/* Fix for textarea styling in quick reply and edit forms */
.quick-reply-editor textarea,
.edit-post-textarea {
    border-radius: var(--radius-small) !important;
    padding: 12px !important;
    background-color: var(--bg-dark) !important;
    color: var(--text-light) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: none !important;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    line-height: 1.5;
}

.quick-reply-editor textarea:focus,
.edit-post-textarea:focus {
    border-color: var(--accent-gold) !important;
    outline: none !important;
}

/* Fix for profile popup positioning */
.wall-post-user-stats {
    transform: none !important;
    /* Disable transform to prevent jumping */
    left: 0 !important;
    bottom: 100% !important;
    margin-bottom: 5px !important;
}

/* Fix for bottom buttons clickability */
.post-actions {
    position: relative;
    z-index: 5;
    /* Ensure buttons are above other elements */
}

/* Ensure dropdowns are above everything */
.post-dropdown-menu,
.wall-post-menu,
.profile-actions-dropdown {
    z-index: 10005 !important;
    /* Higher than post-actions */
}

/* Ensure nested posts don't clip content */
.post-children,
.replies-container {
    overflow: visible !important;
}