/* Custom Stylesheet for TeamFlow (Light Glassmorphism) */

:root {
    --bg-gradient: radial-gradient(at 0% 0%, rgba(224, 242, 254, 0.8) 0px, transparent 50%),
                    radial-gradient(at 50% 0%, rgba(254, 243, 199, 0.8) 0px, transparent 50%),
                    radial-gradient(at 100% 0%, rgba(251, 207, 232, 0.8) 0px, transparent 50%),
                    radial-gradient(at 0% 100%, rgba(217, 249, 157, 0.8) 0px, transparent 50%),
                    radial-gradient(at 100% 100%, rgba(221, 214, 254, 0.8) 0px, transparent 50%);
    --bg-main: #f8fafc;
    
    /* Semantic Colors (Light Slate / Vibrant Accents) */
    --primary: #3b82f6;
    --primary-hover: #1d4ed8;
    --primary-light: rgba(59, 130, 246, 0.1);
    
    --success: #10b981;
    --success-hover: #047857;
    --success-light: rgba(16, 185, 129, 0.1);
    
    --warning: #f59e0b;
    --warning-hover: #b45309;
    --warning-light: rgba(245, 158, 11, 0.1);
    
    --danger: #ef4444;
    --danger-hover: #b91c1c;
    --danger-light: rgba(239, 68, 68, 0.1);
    
    --gray: #64748b;
    --gray-hover: #334155;
    --gray-light: rgba(100, 116, 139, 0.1);
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    /* Glassmorphism Specs */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-bg-hover: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    
    --card-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.03);
    --card-hover-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.08);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', 'Inter', sans-serif;
    outline: none;
}

body {
    background-color: var(--bg-main);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(100, 116, 139, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 116, 139, 0.4);
}

/* Glass Utility class */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius-md);
}

.glass-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.hidden {
    display: none !important;
}

/* Buttons */
button {
    cursor: pointer;
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: var(--text-white);
    padding: 10px 20px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-main);
    padding: 10px 20px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    color: var(--text-white);
    padding: 10px 20px;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-icon-close {
    background: transparent;
    color: var(--text-muted);
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.btn-icon-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

/* ==================== LOGIN SCREEN ==================== */
#login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.login-card {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    z-index: 2;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    margin: 0 auto 16px auto;
    color: var(--primary);
}

.logo-icon i {
    width: 32px;
    height: 32px;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.login-header p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 1);
}

.password-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.error-message {
    color: var(--danger);
    background: var(--danger-light);
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.login-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 10px;
}

/* ==================== MAIN LAYOUT ==================== */
#main-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: fadeIn 0.5s ease-out;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    margin: 20px 40px 0 40px;
    z-index: 10;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle i {
    width: 20px;
    height: 20px;
}

.logo h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}



.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.2);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
}

.user-role {
    font-size: 12px;
    color: var(--text-muted);
}

.logout-btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Content Container */
.content-container {
    padding: 20px 40px 40px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.view-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

/* ==================== SUPERVISOR VIEW ==================== */

/* Stats Grid */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 5px solid transparent;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    width: 24px;
    height: 24px;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Custom border colors for stats */
.border-blue { border-left-color: var(--primary); }
.border-orange { border-left-color: var(--warning); }
.border-purple { border-left-color: #8b5cf6; }
.border-red { border-left-color: var(--danger); }

.bg-blue-light { background-color: var(--primary-light); }
.bg-orange-light { background-color: var(--warning-light); }
.bg-purple-light { background-color: rgba(139, 92, 246, 0.1); }
.bg-red-light { background-color: var(--danger-light); }

.text-blue { color: var(--primary); }
.text-orange { color: var(--warning); }
.text-purple { color: #8b5cf6; }
.text-red { color: var(--danger); }

/* Action bar */
.action-bar {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.search-filters {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.search-box input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 1);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group select {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    cursor: pointer;
    min-width: 150px;
}

/* Grid Table */
.table-container {
    padding: 24px;
    overflow-x: auto;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
}

.table-header h3 {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-header h3 i {
    color: var(--primary);
}

.task-count-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.grid-table {
    min-width: 900px;
}

.grid-table-header {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1fr 1.2fr 1fr 1fr;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
}

.grid-table-body {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.grid-table-row {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1fr 1.2fr 1fr 1fr;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-sm);
    align-items: center;
    transition: var(--transition);
}

.grid-table-row:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transform: translateX(4px);
}

.task-cell-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.task-cell-title .task-title-text {
    font-weight: 600;
    font-size: 15px;
}

.task-cell-title .task-desc-text {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}

.task-cell-assignee {
    display: flex;
    align-items: center;
    gap: 8px;
}

.task-cell-assignee .assignee-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-white);
}

.task-cell-assignee span {
    font-size: 14px;
}

.task-cell-date, .task-cell-deadline {
    font-size: 14px;
}

/* Status Badge Styles */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.status-badge.todo {
    background: var(--gray-light);
    color: var(--gray-hover);
}

.status-badge.inprogress {
    background: var(--primary-light);
    color: var(--primary);
}

.status-badge.review {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.status-badge.done {
    background: var(--success-light);
    color: var(--success-hover);
}

/* Action button grouping */
.cell-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-icon-action {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-sm);
    width: 32px;
    height: 32px;
    color: var(--text-muted);
}

.btn-icon-action:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(59, 130, 246, 0.2);
}

.btn-icon-action.delete:hover {
    background: var(--danger-light);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.2);
}

.no-data {
    text-align: center;
    padding: 48px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.no-data i {
    opacity: 0.4;
}

/* ==================== TEAM MEMBER VIEW ==================== */
.member-action-bar {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.member-title-area h3 {
    font-size: 20px;
    font-weight: 700;
}

.member-title-area p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
    flex: 1;
}

.kanban-column {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 500px;
    max-height: 80vh;
    overflow-y: auto;
    transition: var(--transition);
}

.kanban-column.drag-over {
    background: rgba(255, 255, 255, 0.65);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-top: 4px solid transparent;
    padding-top: 4px;
}

.column-header.border-top-gray { border-top-color: var(--gray); }
.column-header.border-top-blue { border-top-color: var(--primary); }
.column-header.border-top-purple { border-top-color: #8b5cf6; }
.column-header.border-top-green { border-top-color: var(--success); }

.column-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.indicator.bg-gray { background-color: var(--gray); }
.indicator.bg-blue { background-color: var(--primary); }
.indicator.bg-purple { background-color: #8b5cf6; }
.indicator.bg-green { background-color: var(--success); }

.column-title h4 {
    font-size: 15px;
    font-weight: 600;
}

.column-count {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.kanban-cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 400px;
}

/* Kanban Cards */
.kanban-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    box-shadow: var(--card-shadow);
    cursor: grab;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kanban-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-hover-shadow);
    background: rgba(255, 255, 255, 0.95);
}

.kanban-card:active {
    cursor: grabbing;
}

.kanban-card.dragging {
    opacity: 0.4;
    transform: scale(0.95);
    border: 1px dashed var(--primary);
}

.card-header-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.card-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.btn-card-edit {
    background: transparent;
    color: var(--text-muted);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 0;
}

.btn-card-edit:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

.card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
    gap: 8px;
}

.card-date, .card-deadline-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
}

.card-date i, .card-deadline-tag i {
    width: 14px;
    height: 14px;
}

/* Deadline status inside card */
.deadline-badge {
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 11px;
}

.deadline-badge.overdue {
    background: var(--danger-light);
    color: var(--danger-hover);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.deadline-badge.warning {
    background: var(--warning-light);
    color: var(--warning-hover);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.deadline-badge.normal {
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
}

/* Mobile Friendly Movement Control in Cards */
.card-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 10px;
    margin-top: 4px;
    gap: 8px;
}

.btn-move-status {
    flex: 1;
    font-size: 11px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-main);
    border-radius: 6px;
}

.btn-move-status:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* ==================== MODAL STYLING ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.modal-card {
    width: 100%;
    max-width: 600px;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group.half {
    flex: 1;
}

.required {
    color: var(--danger);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .kanban-board {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kanban-column {
        max-height: none;
    }
}

@media (max-width: 992px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-header {
        padding: 15px 20px;
        margin: 10px 20px 0 20px;
    }
    
    .content-container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .kanban-board {
        grid-template-columns: 1fr;
    }
    
    .action-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .header-right span {
        display: none;
    }
    
    .avatar {
        margin-right: 0;
    }
}
