/* Screen-specific styles for Admin_Analytics_Screen */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            height: 100vh;
            width: 100%;
            overflow-x: hidden;
        }
        
        .screen {
            height: 100%;
            overflow-y: auto;
        }
        
        .content {
            padding-bottom: 80px;
        }
        
        /* Fix for bottom navigation */
        .bottom-navigation {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-top: 1px solid #f1f1f1;
            padding: 12px 24px;
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
            z-index: 100;
        }
        
        /* Admin-specific styles */
        .admin-gradient-bg {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            color: white;
            border-radius: 16px;
            box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .admin-gradient-bg:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px -5px rgba(124, 58, 237, 0.4);
        }
        
        .admin-accent-color {
            color: #7c3aed;
        }
        
        /* Chart container styles */
        .chart-container {
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .chart-container:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }
        
        .chart-title {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 15px;
            color: #1f2937;
        }
        
        /* Stats card styles */
        .stats-card {
            background: white;
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .stats-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
        }
        
        .stats-value {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 4px;
            color: #1f2937;
        }
        
        .stats-label {
            font-size: 14px;
            color: #6b7280;
        }
        
        .stats-trend {
            display: flex;
            align-items: center;
            font-size: 12px;
            margin-top: 8px;
        }
        
        .stats-trend-up {
            color: #10b981;
        }
        
        .stats-trend-down {
            color: #ef4444;
        }
        
        /* Data table styles */
        .data-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-bottom: 20px;
        }
        
        .data-table th {
            text-align: left;
            padding: 12px 16px;
            font-weight: 600;
            font-size: 14px;
            color: #4b5563;
            border-bottom: 2px solid #e5e7eb;
        }
        
        .data-table td {
            padding: 12px 16px;
            font-size: 14px;
            color: #1f2937;
            border-bottom: 1px solid #f3f4f6;
        }
        
        .data-table tr:hover td {
            background-color: #f9fafb;
        }
        
        /* Toggle switch styles */
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #e5e7eb;
            transition: .4s;
            border-radius: 24px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: #7c3aed;
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(20px);
        }
        
        /* Chart display */
        .bar-chart {
            display: flex;
            align-items: flex-end;
            height: 120px;
            gap: 8px;
        }
        
        .bar-chart-bar {
            flex-grow: 1;
            background-color: #ea580c;
            border-radius: 4px 4px 0 0;
            position: relative;
        }
        
        .bar-chart-label {
            position: absolute;
            bottom: -20px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 10px;
            color: #6b7280;
        }
        
        /* Donut chart */
        .donut-chart {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: conic-gradient(
                #ea580c 0% 40%,
                #c2410c 40% 65%,
                #7c3aed 65% 85%,
                #5b21b6 85% 100%
            );
            position: relative;
        }
        
        .donut-chart::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            font-size: 12px;
            margin-bottom: 6px;
        }
        
        .legend-color {
            width: 12px;
            height: 12px;
            border-radius: 3px;
            margin-right: 8px;
            flex-shrink: 0;
        }
