

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

   
        * {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        
        /* ===== TOP NAVIGATION ===== */
        .sb-topnav {
            height: 70px;
            background: white !important;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 2px 15px rgba(0,0,0,0.02) !important;
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1040;
            width: 100%;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1e293b !important;
            letter-spacing: -0.3px;
            padding-left: 1.5rem !important;
            white-space: nowrap;
            text-decoration: none;
        }
        
        .navbar-brand strong {
            background: linear-gradient(135deg, #992612 0%, #b33d2c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        
        /* Sidebar Toggle Button */
        #sidebarToggle {
            color: #992612;
            border: none;
            padding: 0.5rem 0.8rem;
            border-radius: 10px;
            transition: all 0.2s ease;
            background: #f8f9fa;
            margin-left: 0.5rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        #sidebarToggle:hover {
            background: #992612;
            color: white;
            transform: scale(1.05);
        }
        
        #sidebarToggle i {
            font-size: 1.2rem;
        }
        
        /* Center Nav - Pushed to the right */
        .navbar-nav {
            margin-left: auto !important;
            margin-right: 1rem !important;
            display: flex;
            align-items: center;
            list-style: none;
        }
        
        .navbar-nav .nav-item {
            list-style: none;
        }
        
        .navbar-nav .nav-link {
            color: #64748b !important;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.5rem 1rem !important;
            border-radius: 30px;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .navbar-nav .nav-link:hover {
            color: #992612 !important;
            background: #f8f9fa;
        }
        
        /* User Dropdown */
        .fa-user-circle {
            font-size: 1.2rem;
            color: #64748b;
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 12px !important;
            padding: 0.5rem !important;
            min-width: 180px;
            display: none;
            z-index: 1000;
        }
        
        .dropdown-menu.show {
            display: block;
        }
        
        .dropdown-item {
            border-radius: 8px;
            padding: 0.7rem 1rem !important;
            font-size: 0.9rem;
            color: #334155;
            transition: all 0.2s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .dropdown-item:hover {
            background: #f8f9fa;
            color: #992612;
        }
        
        /* ===== SIDENAV ===== */
        #layoutSidenav {
            display: flex;
            margin-top: 70px;
            min-height: calc(100vh - 70px);
            position: relative;
            z-index: 1030;
        }
        
        #layoutSidenav_nav {
            width: 260px;
            transition: width 0.3s ease;
            background: white;
            position: relative;
            z-index: 1030;
        }
        
        #layoutSidenav_nav.collapsed {
            width: 0;
        }
        
        .sb-sidenav {
            background: white;
            border-radius: 0 20px 20px 0;
            box-shadow: 5px 0 25px rgba(0,0,0,0.02);
            border-right: 1px solid #f1f5f9;
            height: calc(100vh - 70px);
            width: 260px;
            position: fixed;
            top: 70px;
            left: 0;
            transition: transform 0.3s ease;
            z-index: 1030;
        }
        
        #layoutSidenav_nav.collapsed .sb-sidenav {
            transform: translateX(-100%);
        }
        
        .sb-sidenav-menu {
            padding: 1.5rem 0.8rem;
            overflow-y: auto;
            height: 100%;
        }
        
        .nav {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }
        
        /* Navigation Items */
        .sb-sidenav .nav-link {
            color: #64748b;
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            margin-bottom: 0.2rem;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .sb-nav-link-icon {
            width: 32px;
            height: 32px;
            background: #f8fafc;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: #64748b;
            transition: all 0.2s ease;
        }
        
        .sb-sidenav .nav-link:hover {
            background: #f8fafc;
            color: #992612;
        }
        
        .sb-sidenav .nav-link:hover .sb-nav-link-icon {
            background: #fce9e6;
            color: #992612;
        }
        
        /* Active State */
        .sb-sidenav .nav-link.active {
            background: #fce9e6;
            color: #992612 !important;
            font-weight: 600;
        }
        
        .sb-sidenav .nav-link.active .sb-nav-link-icon {
            background: #992612;
            color: white;
        }
        
        .sb-sidenav .nav-link.active span:not(.sb-nav-link-icon) {
            color: #992612 !important;
        }
        
        /* ===== MAIN CONTENT ===== */
        #layoutSidenav_content {
            flex: 1;
            background: #f5f7fb;
            min-height: calc(100vh - 70px);
            padding: 2rem;
            transition: margin-left 0.3s ease;
            margin-left: 0px;
            width: calc(100% - 260px);
        }
        
        #layoutSidenav_nav.collapsed + #layoutSidenav_content {
            margin-left: 0;
            width: 100%;
        }
        
        main {
            background: transparent;
            border-radius: 20px;
        }
        
        /* ===== DASHBOARD CARDS ===== */
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .dashboard-card {
            background: white;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid #f0f2f5;
            transition: all 0.2s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 200px;
            color: inherit;
        }
        
        .dashboard-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: rgba(153,38,18,0.15);
        }
        
        .dashboard-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: rgba(153,38,18,0.02);
            border-radius: 50%;
            transform: translate(40px, -40px);
            transition: all 0.3s ease;
        }
        
        .dashboard-card:hover::after {
            transform: translate(40px, -40px) scale(1.2);
            background: rgba(153,38,18,0.04);
        }
        
        .card-icon {
            font-size: 2.2rem;
            color: #992612;
            margin-bottom: 1rem;
            transition: transform 0.2s ease;
        }
        
        .dashboard-card:hover .card-icon {
            transform: scale(1.1);
        }
        
        .card-content {
            flex: 1;
        }
        
        .card-content h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.2rem;
            line-height: 1;
        }
        
        .card-content p {
            color: #6c757d;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }
        
        .card-footer {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #992612;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: auto;
        }
        
        .card-footer i {
            transition: transform 0.2s ease;
            font-size: 0.9rem;
        }
        
        .dashboard-card:hover .card-footer i {
            transform: translateX(5px);
        }
        
        /* Welcome Section */
        .welcome-section {
            margin-bottom: 2rem;
        }
        
        .welcome-header {
            font-size: 1.8rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.25rem;
        }
        
        .welcome-subheader {
            color: #6c757d;
            font-size: 1rem;
        }
        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .stat-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid #f0f2f5;
            transition: all 0.2s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }
        
        .stat-title {
            color: #8a8f99;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            margin-bottom: 0.5rem;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #992612;
            margin-bottom: 0.25rem;
        }
        
        .stat-change {
            font-size: 0.8rem;
            color: #28a745;
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }
        
        .stat-change.negative {
            color: #dc3545;
        }
        
        /* ===== FLASH MESSAGES ===== */
        .flash-container {
            position: fixed;
            top: 80px;
            right: 20px;
            z-index: 1050;
            max-width: 350px;
        }
        
        .flash-message {
            background: white;
            border-radius: 12px;
            padding: 1rem 1.5rem;
            margin-bottom: 0.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 4px solid;
            font-size: 0.9rem;
            font-weight: 500;
            animation: slideIn 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .flash-success {
            border-left-color: #10b981;
            background: #ecfdf5;
            color: #065f46;
        }
        
        .btn-close {
            background: transparent;
            border: none;
            opacity: 0.5;
            cursor: pointer;
            font-size: 1rem;
            padding: 0.2rem 0.5rem;
        }
        
        .btn-close:hover {
            opacity: 1;
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .sb-topnav {
                height: 60px;
            }
            
            .navbar-brand {
                font-size: 1rem;
                padding-left: 1rem !important;
            }
            
            #layoutSidenav {
                margin-top: 60px;
            }
            
            .sb-sidenav {
                top: 60px;
                height: calc(100vh - 60px);
                width: 240px;
            }
            
            #layoutSidenav_content {
                margin-left: 0;
                width: 100%;
                padding: 1rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0.8rem !important;
                font-size: 0.85rem;
            }
            
            .flash-container {
                top: 70px;
                right: 10px;
                left: 10px;
                max-width: none;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-nav .nav-link span {
                display: none;
            }
        }
        
        /* Utility Classes */
        .mt-4 {
            margin-top: 1.5rem;
        }
        
        .mb-4 {
            margin-bottom: 1.5rem;
        }
        
        .text-primary {
            color: #992612 !important;
        }

        .sl_card{
            background: white; 
            border-radius: 16px; 
            padding: 2rem; 
            box-shadow: 0 2px 8px rgba(0,0,0,0.03); 
            border: 1px solid #f0f2f5; 
            transition: all 0.2s; 
            height: 160px; 
            display: flex; 
            flex-direction: column;
        }

        .sl_card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(153,38,33,0.1);
            border-color: rgba(153,38,33,0.2);
        }

 
    :root {
        --primary: #992621;
        --primary-light: #b8322f;
        --primary-dark: #7a1e1a;
        --glass-bg: rgba(255, 255, 255, 0.7);
        --glass-border: rgba(255, 255, 255, 0.5);
        --shadow-soft: 0 8px 32px rgba(153, 38, 33, 0.08);
        --shadow-hover: 0 20px 60px rgba(153, 38, 33, 0.15);
        --gradient-primary: linear-gradient(135deg, #992621 0%, #c73e3a 100%);
        --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }

    body {
        font-family: 'Inter', sans-serif;
        background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
        overflow-x: hidden;
        min-height: 100vh;
    }

    /* Header Section */
    .page-header {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: var(--shadow-soft);
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(153, 38, 33, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .user-greeting {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.875rem;
        font-weight: 500;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }

    .user-name {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .page-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-top: 1rem;
    }

    .page-subtitle {
        color: #64748b;
        font-size: 0.9rem;
        font-weight: 400;
    }

    /* Action Buttons */
    .action-bar {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .btn-futuristic {
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        font-size: 0.875rem;
        color: var(--primary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-soft);
        position: relative;
        overflow: hidden;
    }

    .btn-futuristic::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.5s;
    }

    .btn-futuristic:hover::before {
        left: 100%;
    }

    .btn-futuristic:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary);
        color: var(--primary);
    }

    .btn-primary-futuristic {
        background: var(--gradient-primary);
        color: white;
        border: none;
    }

    .btn-primary-futuristic:hover {
        color: white;
        box-shadow: 0 10px 40px rgba(153, 38, 33, 0.3);
    }

    /* Section Headers */
    .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 3rem 0 1.5rem 0;
        padding-bottom: 1rem;
        border-bottom: 2px solid rgba(153, 38, 33, 0.1);
        position: relative;
    }

    .section-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background: var(--gradient-primary);
        border-radius: 2px;
    }

    .section-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #1e293b;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .section-icon {
        width: 40px;
        height: 40px;
        background: var(--gradient-primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.25rem;
    }

    .section-badge {
        background: rgba(153, 38, 33, 0.1);
        color: var(--primary);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 600;
    }

    /* Timetable Cards - Futuristic Glassmorphism */
    .timetable-grid {
        gap: 1.5rem;
    }

    .timetable-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        box-shadow: var(--shadow-soft);
    }

    .timetable-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .timetable-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: var(--shadow-hover);
        border-color: rgba(153, 38, 33, 0.2);
    }

    .timetable-card:hover::before {
        opacity: 1;
    }

    .card-date-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(153, 38, 33, 0.08);
        color: var(--primary);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }

    .card-course-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #1e293b;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #64748b;
        font-size: 0.875rem;
    }

    .meta-icon {
        width: 32px;
        height: 32px;
        background: rgba(153, 38, 33, 0.08);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    .time-highlight {
        background: var(--gradient-primary);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.875rem;
        display: inline-block;
        margin-top: 0.5rem;
    }

    /* Special Card - Chapel Service */
    .card-special {
        background: var(--gradient-primary);
        color: white;
    }

    .card-special .card-date-badge {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .card-special .card-course-title {
        color: white;
    }

    .card-special .meta-icon {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .card-special .meta-item {
        color: rgba(255, 255, 255, 0.9);
    }

    .card-special::before {
        background: rgba(255, 255, 255, 0.3);
    }

    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 4rem 2rem;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        box-shadow: var(--shadow-soft);
    }

    .empty-state-img {
        width: 200px;
        height: 200px;
        margin-bottom: 2rem;
        opacity: 0.6;
        filter: grayscale(100%);
    }

    .empty-state-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 0.5rem;
    }

    .empty-state-text {
        color: #64748b;
        max-width: 400px;
        margin: 0 auto;
    }

    .empty-state-link {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 2px solid var(--primary);
        transition: all 0.3s;
    }

    .empty-state-link:hover {
        color: var(--primary-dark);
        border-bottom-color: var(--primary-dark);
    }

    /* Modal Styling */
    .modal-futuristic .modal-content {
        background: var(--glass-bg);
        backdrop-filter: blur(30px);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }
    .modal {
    z-index: 2000 !important;
}

.modal-backdrop {
    z-index: 1990 !important;
}

    .modal-futuristic .modal-header {
        background: var(--gradient-primary);
        color: white;
        border: none;
        padding: 1.5rem;
    }

    .modal-futuristic .modal-title {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 1.25rem;
    }

    .modal-futuristic .modal-body {
        padding: 2rem;
    }

    .detail-row {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .detail-row:last-child {
        border-bottom: none;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        background: rgba(153, 38, 33, 0.08);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .detail-content {
        flex: 1;
    }

    .detail-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #64748b;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .detail-value {
        font-size: 1rem;
        color: #1e293b;
        font-weight: 600;
    }

    .btn-close-custom {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .btn-close-custom:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-in {
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .stagger-1 { animation-delay: 0.1s; }
    .stagger-2 { animation-delay: 0.2s; }
    .stagger-3 { animation-delay: 0.3s; }
    .stagger-4 { animation-delay: 0.4s; }

    /* Admin Cards */
    .admin-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.5rem;
        text-decoration: none;
        color: inherit;
    }

    .admin-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        filter: brightness(0.4);
        z-index: 0;
        transition: all 0.4s;
    }

    .admin-card:hover::before {
        filter: brightness(0.3);
        transform: scale(1.05);
    }

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

    .admin-card-content {
        position: relative;
        z-index: 1;
        color: white;
    }

    .admin-card-count {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .admin-card-label {
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .page-header {
            padding: 1.5rem;
        }
        
        .user-name {
            font-size: 1.5rem;
        }
        
        .timetable-grid {
            grid-template-columns: 1fr;
        }
        
        .action-bar {
            flex-direction: column;
            width: 100%;
        }
        
        .btn-futuristic {
            width: 100%;
            justify-content: center;
        }
    }