/* ===== MODERN PREMIUM STYLES ===== */
        :root {
            --primary: #4f46e5;
            --primary-dark: #4338ca;
            --primary-light: #818cf8;
            --primary-soft: #eef2ff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
        }

        /* Modern Header - Premium Design */
        .modern-header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(229, 231, 235, 0.5);
            position: sticky;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 4.5rem;
        }

        /* Premium Logo */
        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.3);
            transition: all 0.3s ease;
        }

        .logo-wrapper:hover .logo-icon {
            transform: scale(1.05) rotate(-2deg);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gray-900), var(--gray-700));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
            transition: all 0.3s ease;
        }

        .logo-wrapper:hover .logo-text {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-badge {
            font-size: 0.6rem;
            background: rgba(79, 70, 229, 0.1);
            color: var(--primary);
            padding: 0.2rem 0.6rem;
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 0.3px;
            border: 1px solid rgba(79, 70, 229, 0.2);
            white-space: nowrap;
        }

        /* Premium Search */
        .search-wrapper {
            flex: 1;
            max-width: 500px;
            margin: 0 2rem;
            position: relative;
        }

        .search-input {
            width: 100%;
            height: 46px;
            padding: 0 1rem 0 3rem;
            border: 2px solid transparent;
            border-radius: 40px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: var(--gray-100);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            font-size: 1rem;
            transition: color 0.3s ease;
            pointer-events: none;
        }

        .search-input:focus + .search-icon {
            color: var(--primary);
        }

        /* Premium Desktop Navigation */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link {
            padding: 0.6rem 1.25rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--gray-600);
            border-radius: 40px;
            transition: all 0.2s ease;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
        }

        .nav-link:hover {
            background: var(--gray-100);
            color: var(--primary);
        }

        .nav-link.active {
            background: var(--primary-soft);
            color: var(--primary);
            font-weight: 600;
        }

        /* Premium User Menu */
        .user-menu {
            position: relative;
            margin-left: 0.5rem;
        }

        .user-button {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.35rem 0.35rem 0.35rem 1.25rem;
            background: var(--gray-100);
            border: 2px solid transparent;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .user-button:hover {
            background: white;
            border-color: var(--primary);
            box-shadow: 0 8px 16px -8px rgba(79, 70, 229, 0.2);
        }

        .user-avatar {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 4px 8px -2px rgba(79, 70, 229, 0.4);
        }

        .user-name {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--gray-700);
            max-width: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ef4444;
            color: white;
            font-size: 0.6rem;
            font-weight: 600;
            min-width: 20px;
            height: 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 0.75rem;
            width: 300px;
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
            display: none;
            z-index: 100;
            overflow: hidden;
        }

        .user-dropdown.show {
            display: block;
            animation: slideDown 0.2s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-header {
            padding: 1.25rem;
            background: linear-gradient(135deg, var(--gray-50), white);
            border-bottom: 1px solid var(--gray-200);
        }

        .dropdown-header .name {
            font-weight: 600;
            color: var(--gray-900);
            font-size: 1rem;
        }

        .dropdown-header .email {
            font-size: 0.8rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.25rem;
            color: var(--gray-700);
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 0.95rem;
        }

        .dropdown-item:hover {
            background: var(--gray-50);
            color: var(--primary);
        }

        .dropdown-item i {
            width: 20px;
            color: var(--gray-400);
            font-size: 1rem;
            transition: color 0.2s ease;
        }

        .dropdown-item:hover i {
            color: var(--primary);
        }

        .dropdown-divider {
            height: 1px;
            background: var(--gray-200);
            margin: 0.5rem 0;
        }

        /* ===== MOBILE BOTTOM NAVIGATION ===== */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid var(--gray-200);
            padding: 0.5rem 0.75rem;
            z-index: 100;
            box-shadow: 0 -4px 20px -5px rgba(0,0,0,0.1);
        }

        .mobile-nav-items {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 0.25rem;
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 0.25rem;
            border-radius: 16px;
            text-decoration: none;
            color: var(--gray-500);
            transition: all 0.2s ease;
            flex: 1;
            position: relative;
        }

        .mobile-nav-item i {
            font-size: 1.3rem;
            margin-bottom: 0.2rem;
        }

        .mobile-nav-item span {
            font-size: 0.7rem;
            font-weight: 500;
        }

        .mobile-nav-item.active {
            color: var(--primary);
            background: var(--primary-soft);
        }

        .mobile-nav-item.active i {
            transform: scale(1.1);
        }

        .mobile-nav-badge {
            position: absolute;
            top: 0.2rem;
            right: 0.5rem;
            background: #ef4444;
            color: white;
            font-size: 0.55rem;
            font-weight: 600;
            min-width: 16px;
            height: 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
        }

        .mobile-create-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-radius: 30px;
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.85rem;
            white-space: nowrap;
            box-shadow: 0 4px 12px -4px rgba(79, 70, 229, 0.4);
        }

        .mobile-create-btn i {
            font-size: 1rem;
        }

        /* Mobile Search Bar */
        .mobile-search {
            display: none;
            padding: 0.75rem 1rem;
            background: white;
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 4.5rem;
            z-index: 45;
        }

        .mobile-search .search-wrapper {
            max-width: 100%;
            margin: 0;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            
            .search-wrapper {
                max-width: 300px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                height: 4rem;
            }
            
            .search-wrapper {
                display: none;
            }
            
            .user-name {
                display: none;
            }
            
            .date-display span {
                display: none;
            }
            
            .date-display {
                padding: 0.5rem;
            }
            
            .action-btn span {
                display: none;
            }
            
            .action-btn {
                padding: 0.5rem;
                width: 40px;
                height: 40px;
                justify-content: center;
            }
            
            .mobile-bottom-nav {
                display: block;
            }
            
            .mobile-search {
                display: block;
            }
            
            /* Add padding to body to account for bottom nav */
            body {
                padding-bottom: 4rem;
            }
            
            .logo-badge {
                display: none;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .logo-icon {
                width: 38px;
                height: 38px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .mobile-create-btn span {
                display: none;
            }
            
            .mobile-create-btn {
                padding: 0.5rem;
                aspect-ratio: 1/1;
                border-radius: 50%;
            }
            
            .mobile-create-btn i {
                margin: 0;
            }
            
            .mobile-nav-item span {
                font-size: 0.65rem;
            }
        }

        /* Dashboard Header */
        .dashboard-header {
            background: white;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--gray-200);
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
            height: 4.5rem;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mobile-menu-toggle {
            display: none;
            background: var(--gray-100);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            color: var(--gray-600);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .mobile-menu-toggle:hover {
            background: var(--gray-200);
            color: var(--primary);
        }

        .page-title h1 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gray-900);
            letter-spacing: -0.3px;
            margin-bottom: 0.25rem;
        }

        .page-title p {
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .date-display {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 30px;
            color: var(--gray-600);
            font-size: 0.9rem;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .date-display:hover {
            background: white;
            border-color: var(--primary);
        }

        .date-display i {
            color: var(--primary);
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.25rem;
            background: var(--primary);
            border: none;
            border-radius: 30px;
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
            text-decoration: none;
            white-space: nowrap;
        }

        .action-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(79, 70, 229, 0.3);
        }

        .action-btn i {
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .dashboard-header {
                padding: 1rem;
            }

            .mobile-menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .page-title h1 {
                font-size: 1.2rem;
            }

            .page-title p {
                font-size: 0.75rem;
            }
        }

        /* Dashboard container & sidebar layout (admin/organizer backend) */
        .dashboard-container {
            display: grid;
            grid-template-columns: 260px 1fr;
            min-height: calc(100vh - 4.5rem);
            background: var(--gray-50);
        }

        .dashboard-main {
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .dashboard-main > section {
            flex: 1;
        }

        .modern-sidebar {
            background: white;
            border-right: 1px solid var(--gray-200);
            display: flex;
            flex-direction: column;
            position: sticky;
            top: 4.5rem;
            height: calc(100vh - 4.5rem);
            overflow-y: auto;
            z-index: 30;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 1.25rem 1rem;
            border-bottom: 1px solid var(--gray-100);
        }

        .profile-image {
            position: relative;
            flex-shrink: 0;
        }

        .avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .status-indicator {
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #10b981;
            border: 2px solid white;
        }

        .status-indicator.online { background: #10b981; }
        .status-indicator.offline { background: var(--gray-400); }

        .profile-info h4 {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--gray-900);
            margin: 0;
            line-height: 1.2;
        }

        .profile-info p {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .sidebar-nav {
            flex: 1;
            padding: 1rem 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .nav-section + .nav-section {
            margin-top: 0.5rem;
        }

        .nav-section-title {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 0.5rem 0.75rem 0.25rem;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.55rem 0.85rem;
            border-radius: 0.6rem;
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: background 0.15s ease, color 0.15s ease;
        }

        .nav-item i {
            width: 1.1rem;
            text-align: center;
            font-size: 0.95rem;
            color: var(--gray-400);
            transition: color 0.15s ease;
        }

        .nav-item:hover {
            background: var(--gray-50);
            color: var(--gray-900);
        }

        .nav-item:hover i { color: var(--primary); }

        .nav-item.active {
            background: var(--primary-soft);
            color: var(--primary);
            font-weight: 600;
        }

        .nav-item.active i { color: var(--primary); }

        .sidebar-footer {
            border-top: 1px solid var(--gray-100);
            padding: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .footer-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.55rem 0.85rem;
            border-radius: 0.6rem;
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            background: transparent;
            border: 0;
            width: 100%;
            text-align: left;
            cursor: pointer;
            transition: background 0.15s ease, color 0.15s ease;
        }

        .footer-link i { width: 1.1rem; text-align: center; }

        .footer-link:hover {
            background: var(--gray-50);
            color: var(--gray-900);
        }

        .footer-link.logout { color: #ef4444; }
        .footer-link.logout:hover { background: #fef2f2; color: #b91c1c; }

        .dashboard-header {
            position: sticky;
            top: 0;
            z-index: 20;
        }

        .dashboard-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        /* Mobile sidebar */
        @media (max-width: 1024px) {
            .dashboard-container {
                grid-template-columns: 1fr;
            }
            .modern-sidebar {
                position: fixed;
                top: 4.5rem;
                left: 0;
                width: 260px;
                height: calc(100vh - 4.5rem);
                transform: translateX(-100%);
                transition: transform 0.25s ease;
                box-shadow: 4px 0 12px rgba(15, 23, 42, 0.08);
            }
            .modern-sidebar.show {
                transform: translateX(0);
            }
        }

        /* ===== ADMIN DASHBOARD COMPONENTS ===== */

        .page-header {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .page-header__title {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--gray-900);
            letter-spacing: -0.4px;
            margin: 0 0 .25rem;
        }

        .page-header__subtitle {
            font-size: .9rem;
            color: var(--gray-500);
            margin: 0;
        }

        .page-header__actions {
            display: flex;
            align-items: center;
            gap: .5rem;
            flex-wrap: wrap;
        }

        .page-header__actions .btn {
            margin: 0;
        }

        /* Stat cards (iconized) */
        .stat-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem;
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: .85rem;
            box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
            transition: transform .15s ease, box-shadow .15s ease;
            text-decoration: none;
            color: inherit;
        }

        a.stat-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
            border-color: var(--gray-300);
        }

        .stat-card__icon {
            width: 48px;
            height: 48px;
            border-radius: .75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .stat-card__body {
            min-width: 0;
            flex: 1;
        }

        .stat-card__value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1.1;
            letter-spacing: -0.3px;
        }

        .stat-card__label {
            font-size: .82rem;
            font-weight: 600;
            color: var(--gray-500);
            margin-top: .15rem;
        }

        .stat-card__hint {
            font-size: .72rem;
            color: var(--gray-400);
            margin-top: .15rem;
        }

        .stat-card--indigo  .stat-card__icon { background: linear-gradient(135deg, #4f46e5, #818cf8); }
        .stat-card--green   .stat-card__icon { background: linear-gradient(135deg, #059669, #34d399); }
        .stat-card--amber   .stat-card__icon { background: linear-gradient(135deg, #d97706, #fbbf24); }
        .stat-card--rose    .stat-card__icon { background: linear-gradient(135deg, #e11d48, #fb7185); }
        .stat-card--sky     .stat-card__icon { background: linear-gradient(135deg, #0284c7, #38bdf8); }
        .stat-card--violet  .stat-card__icon { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
        .stat-card--slate   .stat-card__icon { background: linear-gradient(135deg, #475569, #94a3b8); }

        /* Status badges */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: .3rem;
            padding: .2rem .55rem;
            border-radius: 999px;
            font-size: .7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .04em;
            line-height: 1;
        }

        .status-badge::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
        }

        .status-badge--success { background: #ecfdf5; color: #047857; }
        .status-badge--warning { background: #fffbeb; color: #b45309; }
        .status-badge--danger  { background: #fef2f2; color: #b91c1c; }
        .status-badge--info    { background: #eff6ff; color: #1d4ed8; }
        .status-badge--muted   { background: var(--gray-100); color: var(--gray-600); }

        /* Data table */
        .data-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            font-size: .875rem;
        }

        .data-table thead th {
            background: var(--gray-50);
            text-align: left;
            font-size: .72rem;
            font-weight: 700;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: .04em;
            padding: .75rem 1rem;
            border-bottom: 1px solid var(--gray-200);
            white-space: nowrap;
        }

        .data-table tbody td {
            padding: .85rem 1rem;
            border-bottom: 1px solid var(--gray-100);
            color: var(--gray-700);
            vertical-align: middle;
        }

        .data-table tbody tr:hover {
            background: var(--gray-50);
        }

        .data-table tbody tr:last-child td {
            border-bottom: 0;
        }

        .data-table .data-table__primary {
            font-weight: 700;
            color: var(--gray-900);
        }

        .data-table .data-table__meta {
            font-size: .78rem;
            color: var(--gray-500);
        }

        .data-table .data-table__actions {
            text-align: right;
            white-space: nowrap;
        }

        .data-table__actions .btn {
            padding: .35rem .65rem;
            font-size: .78rem;
        }

        .data-table__actions form {
            display: inline-block;
            margin: 0;
        }

        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 3rem 1.5rem;
            color: var(--gray-500);
        }

        .empty-state__icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1rem;
            background: var(--gray-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            font-size: 1.5rem;
        }

        .empty-state__title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--gray-700);
            margin: 0 0 .25rem;
        }

        .empty-state__description {
            font-size: .875rem;
            color: var(--gray-500);
            margin: 0 auto;
            max-width: 32rem;
        }

        .empty-state__action {
            margin-top: 1rem;
        }

        /* Filter bar */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            align-items: center;
            margin-bottom: 1rem;
            padding: .75rem 1rem;
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: .75rem;
        }

        .filter-bar form {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            align-items: center;
            margin: 0;
            flex: 1;
        }

        .filter-bar .field,
        .filter-bar .form-input {
            padding: .45rem .7rem;
            font-size: .82rem;
            max-width: 14rem;
        }

        .filter-bar .btn {
            padding: .45rem .8rem;
            font-size: .82rem;
        }

        /* Form card */
        .form-card {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: .85rem;
            box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
            padding: 1.25rem 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-card__title {
            font-size: .9rem;
            font-weight: 700;
            color: var(--gray-700);
            margin: 0 0 1rem;
        }

        /* Quick action grid (used in admin dashboard) */
        .quick-actions {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: .65rem;
            margin-bottom: 1.5rem;
        }

        .quick-action {
            display: flex;
            align-items: center;
            gap: .6rem;
            padding: .85rem 1rem;
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: .75rem;
            color: var(--gray-700);
            text-decoration: none;
            font-size: .85rem;
            font-weight: 600;
            transition: all .15s ease;
        }

        .quick-action:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(15, 23, 42, .06);
        }

        .quick-action i {
            width: 1.25rem;
            text-align: center;
            color: var(--primary);
        }

