.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .bg-gradient-electric {
            background: linear-gradient(135deg, #b8c3ff 0%, #ddb7ff 100%);
        }
        .text-gradient-electric {
            background: linear-gradient(135deg, #b8c3ff 0%, #ddb7ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .brutalist-border {
            border: 2px solid white;
        }
        .brutalist-shadow-primary {
            box-shadow: 4px 4px 0px 0px #b8c3ff;
        }
        .brutalist-shadow-secondary {
            box-shadow: 6px 6px 0px 0px #ddb7ff;
        }
        .map-pattern {
            background-image: radial-gradient(circle, #434656 1px, transparent 1px);
            background-size: 30px 30px;
        }
        /* Sidebar Styles */
        #sidebar-overlay {
            transition: opacity 0.3s ease;
            display: none;
        }
        #sidebar {
            transition: transform 0.3s ease-in-out;
        }
        .sidebar-open #sidebar {
            transform: translateX(0);
        }
        .sidebar-open #sidebar-overlay {
            display: block;
            opacity: 1;
        }
        .sidebar-open main, .sidebar-open header, .sidebar-open footer {
            filter: blur(4px);
            pointer-events: none;
        }
