
            /* ================================
               STYLES GÉNÉRAUX ET ACCESSIBILITÉ
               ================================ */
            
            .mapbox-container {
                width: 100%;
                height: 100vh;
                position: relative;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                background: #f8fafc;
                overflow: hidden;

                box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            }
            
            /* Focus visible pour l'accessibilité */
            .mapbox-container *:focus-visible {
                outline: 2px solid #3b82f6;
                outline-offset: 2px;
                border-radius: 4px;
            }
            
            /* Mode réduit pour utilisateurs préférant moins d'animations */
            @media (prefers-reduced-motion: reduce) {
                .mapbox-container * {
                    animation-duration: 0.01ms !important;
                    animation-iteration-count: 1 !important;
                    transition-duration: 0.01ms !important;
                }
            }
            
            /* ================================
               LOADING SPINNER AMÉLIORÉ
               ================================ */
            
            .mapbox-loading {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: #006980;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                z-index: 2000;
                transition: opacity 0.5s ease, visibility 0.5s ease;
            }
            
            .mapbox-loading.hidden {
                opacity: 0;
                visibility: hidden;
            }
            
            .mapbox-spinner {
                position: relative;
                width: 60px;
                height: 60px;
                margin-bottom: 24px;
            }
            
            .mapbox-spinner-ring {
                position: absolute;
                border: 3px solid transparent;
                border-top: 3px solid white;
                border-radius: 50%;
                animation: mapbox-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            }
            
            .mapbox-spinner-ring:nth-child(1) {
                width: 60px;
                height: 60px;
                animation-delay: -0.45s;
            }
            
            .mapbox-spinner-ring:nth-child(2) {
                width: 48px;
                height: 48px;
                top: 6px;
                left: 6px;
                animation-delay: -0.3s;
            }
            
            .mapbox-spinner-ring:nth-child(3) {
                width: 36px;
                height: 36px;
                top: 12px;
                left: 12px;
                animation-delay: -0.15s;
            }
            
            @keyframes mapbox-spin {
                0% { transform: rotate(0deg); }
                100% { transform: rotate(360deg); }
            }
            
            .mapbox-loading-text {
                color: white;
                font-size: 16px;
                font-weight: 500;
                text-align: center;
                margin: 0;
                opacity: 0.9;
            }
            
            /* ================================
               CONTRÔLES ACCESSIBLES
               ================================ */
            
            .mapbox-controls {
                position: absolute;
                top: 20px;
                left: 20px;
                z-index: 1500;
                display: flex;
                flex-direction: column;
                gap: 8px;
            }
            
            .mapbox-container .mapbox-control-btn {
                width: 44px !important;
                height: 44px !important;
                background: white !important;
                border: none !important;
                border-radius: 8px !important;
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
                cursor: pointer !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
                color: #374151 !important;
                padding: 0 !important;
                margin: 0 !important;
                font-size: inherit !important;
                font-weight: normal !important;
                text-decoration: none !important;
                outline: none !important;
            }
            
            .mapbox-container .mapbox-control-btn:hover {
                background: #f3f4f6 !important;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
                transform: translateY(-1px) !important;
                color: #374151 !important;
            }
            
            .mapbox-container .mapbox-control-btn:active {
                transform: translateY(0) !important;
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
            }
            
            .mapbox-container .mapbox-control-btn:focus {
                background: #f3f4f6 !important;
                color: #374151 !important;
            }
            
            .mapbox-container .mapbox-control-btn svg {
                width: 20px !important;
                height: 20px !important;
            }
            
            /* ================================
               SIDEBAR DESKTOP AMÉLIORÉE
               ================================ */
            
            .mapbox-sidebar {
                position: absolute;
                top: 0;
                right: 0;
                width: 420px;
                height: 100%;
                background: white;
                box-shadow: -8px 0 25px -5px rgba(0, 0, 0, 0.1), -4px 0 10px -5px rgba(0, 0, 0, 0.04);
                z-index: 1000;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                overflow: hidden;
                border-radius: 16px 0 0 16px;
            }
            
            .mapbox-sidebar.active {
                transform: translateX(0);
            }
            
            .mapbox-sidebar-content {
                height: 100%;
                overflow-y: auto;
                overflow-x: hidden;
                padding: 32px 28px;
                position: relative;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
            }
            
            /* Scrollbar personnalisée */
            .mapbox-sidebar-content::-webkit-scrollbar {
                width: 6px;
            }
            
            .mapbox-sidebar-content::-webkit-scrollbar-track {
                background: #f1f5f9;
            }
            
            .mapbox-sidebar-content::-webkit-scrollbar-thumb {
                background: #cbd5e1;
                border-radius: 3px;
            }
            
            .mapbox-sidebar-content::-webkit-scrollbar-thumb:hover {
                background: #94a3b8;
            }
            
            /* ================================
               PANEL MOBILE AMÉLIORÉ
               ================================ */
            
            .mapbox-mobile-panel {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 60vh;
                max-height: 80vh;
                background: white;
                box-shadow: 0 -8px 25px -5px rgba(0, 0, 0, 0.1), 0 -4px 10px -5px rgba(0, 0, 0, 0.04);
                z-index: 1000;
                transform: translateY(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border-radius: 20px 20px 0 0;
                overflow: hidden;
                touch-action: pan-y;
            }
            
            .mapbox-mobile-panel.active {
                transform: translateY(0);
            }
            
            .mapbox-mobile-content {
                height: 100%;
                overflow-y: auto;
                overflow-x: hidden;
                padding: 44px 24px 24px;
                position: relative;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
            }
            
            .mapbox-mobile-handle {
                position: absolute;
                top: 12px;
                left: 50%;
                transform: translateX(-50%);
                width: 48px;
                height: 4px;
                background: #cbd5e1;
                border-radius: 2px;
                cursor: grab;
                transition: background-color 0.2s ease;
            }
            
            .mapbox-mobile-handle:hover,
            .mapbox-mobile-handle:focus {
                background: #94a3b8;
            }
            
            .mapbox-mobile-handle:active {
                cursor: grabbing;
            }
            
            /* ================================
               BOUTONS DE FERMETURE AMÉLIORÉS
               ================================ */
            
            .mapbox-container .mapbox-close-btn {
                position: absolute !important;
                top: 20px !important;
                right: 20px !important;
                width: 40px !important;
                height: 40px !important;
                background: rgba(255, 255, 255, 0.9) !important;
                backdrop-filter: blur(10px) !important;
                border: none !important;
                border-radius: 50% !important;
                cursor: pointer !important;
                z-index: 1001 !important;
                color: #6b7280 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
                padding: 0 !important;
                margin: 0 !important;
                font-size: inherit !important;
                font-weight: normal !important;
                text-decoration: none !important;
                outline: none !important;
            }
            
            .mapbox-container .mapbox-close-btn:hover {
                background: rgba(248, 250, 252, 0.95) !important;
                color: #374151 !important;
                transform: scale(1.05) !important;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
            }
            
            .mapbox-container .mapbox-close-btn:active {
                transform: scale(0.95) !important;
            }
            
            .mapbox-container .mapbox-close-btn:focus {
                background: rgba(248, 250, 252, 0.95) !important;
                color: #374151 !important;
            }
            
            .mapbox-container .mapbox-close-btn svg {
                width: 18px !important;
                height: 18px !important;
            }
            
            /* ================================
               CONTENU DES RÉFÉRENCES AMÉLIORÉ
               ================================ */
            
            .mapbox-content-inner {
                animation: mapbox-fade-in 0.4s ease-out;
            }
            
            @keyframes mapbox-fade-in {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .mapbox-reference-image-container {
                margin-bottom: 24px;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
                position: relative;
            }
            
            .mapbox-reference-image-container::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 30%;
                background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
                pointer-events: none;
            }
            
            .mapbox-reference-image {
                width: 100%;
                height: 240px;
                object-fit: cover;
                display: block;
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }
            
            .mapbox-reference-image:hover {
                transform: scale(1.02);
            }
            
            .mapbox-reference-title {
                font-size: 28px;
                font-weight: 700;
                margin-bottom: 16px;
                color: #111827;
                line-height: 1.2;
                letter-spacing: -0.025em;
            }
            
            .mapbox-reference-meta {
                margin-bottom: 24px;
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                align-items: center;
            }
            
            .mapbox-reference-year {
                background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 14px;
                font-weight: 600;
                color: #374151;
                border: 1px solid rgba(229, 231, 235, 0.8);
            }
            
            .mapbox-reference-family {
                display: inline-flex;
                align-items: center;
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 14px;
                font-weight: 600;
                color: white;
                text-shadow: 0 1px 2px rgba(0,0,0,0.1);
                position: relative;
                overflow: hidden;
            }
            

            
            .mapbox-reference-description {
                line-height: 1.7;
                color: #4b5563;
                font-size: 16px;
                position: relative;
            }
            
            .mapbox-reference-description p {
                margin-bottom: 16px;
            }
            
            .mapbox-reference-description p:last-child {
                margin-bottom: 0;
            }
            
            /* ================================
               OVERLAY LISTE DES RÉFÉRENCES
               ================================ */
            .mapbox-reference-filter {
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    color: #111827;
    margin-right: auto;
}
			
			.references-list-ctn {
				padding:24px;
				display:flex;
			}

            .mapbox-references-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.6);
                backdrop-filter: blur(8px);
                z-index: 2000;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }
            
            .mapbox-references-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            .mapbox-references-content {
                background: white;
                border-radius: 16px;
                width: 90%;
                max-width: 800px;
                max-height: 80vh;
                overflow: hidden;
                box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
                transform: scale(0.95) translateY(20px);
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }
            
            .mapbox-references-overlay.active .mapbox-references-content {
                transform: scale(1) translateY(0);
            }
            
            .mapbox-references-header {
                padding: 24px 28px;
                border-bottom: 1px solid #e5e7eb;
                display: flex;
                align-items: center;
                justify-content: space-between;
                background: #f9fafb;
            }
            
            .mapbox-references-header h2 {
                margin: 0;
                font-size: 24px;
                font-weight: 700;
                color: #111827;
            }
            
            .mapbox-references-grid {
                padding: 24px;
                max-height: 60vh;
                overflow-y: auto;
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
            }
            
            .mapbox-reference-card {
                background: white;
                border: 1px solid #e5e7eb;
                border-radius: 12px;
                overflow: hidden;
                cursor: pointer;
                transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            }
            
            .mapbox-reference-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
                border-color: #d1d5db;
            }
            
            .mapbox-reference-card-image {
                width: 100%;
                height: 120px;
                object-fit: cover;
                background: #f3f4f6;
            }
            
            .mapbox-reference-card-content {
                padding: 16px;
            }
            
            .mapbox-reference-card-title {
                font-size: 16px;
                font-weight: 600;
                color: #111827;
                margin-bottom: 8px;
                line-height: 1.4;
            }
            
            .mapbox-reference-card-meta {
                display: flex;
                gap: 8px;
                margin-bottom: 8px;
            }
            
            .mapbox-reference-card-family {
                font-size: 12px;
                padding: 4px 8px;
                border-radius: 12px;
                color: white;
                font-weight: 500;
            }
            
            .mapbox-reference-card-year {
                font-size: 12px;
                padding: 4px 8px;
                border-radius: 12px;
                background: #f3f4f6;
                color: #6b7280;
                font-weight: 500;
            }
            
            /* ================================
               ÉTATS D'ERREUR ET VIDES
               ================================ */
            
            .mapbox-error-container,
            .mapbox-empty-container {
                width: 100%;
                min-height: 400px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
                border-radius: 12px;
                border: 1px solid #e2e8f0;
            }
            
            .mapbox-error-content,
            .mapbox-empty-content {
                text-align: center;
                max-width: 400px;
                padding: 40px 20px;
            }
            
            .mapbox-error-icon,
            .mapbox-empty-icon {
                width: 64px;
                height: 64px;
                margin: 0 auto 24px;
                color: #6b7280;
            }
            
            .mapbox-error-content h3,
            .mapbox-empty-content h3 {
                font-size: 24px;
                font-weight: 700;
                color: #111827;
                margin: 0 0 16px;
            }
            
            .mapbox-error-content p,
            .mapbox-empty-content p {
                font-size: 16px;
                color: #6b7280;
                line-height: 1.6;
                margin: 0;
            }
            
            /* ================================
               RESPONSIVE DESIGN AMÉLIORÉ
               ================================ */
            
            @media (max-width: 768px) {
                .mapbox-container {
                    border-radius: 0;
                    height: 100vh;
                }
                
                .mapbox-sidebar {
                    display: none !important;
                }
                
                .mapbox-mobile-panel {
                    display: block !important;
                }
                
                .mapbox-controls {
                    top: 16px;
                    left: 16px;
                }
                
                .mapbox-container .mapbox-control-btn {
                    width: 40px !important;
                    height: 40px !important;
                }
                
                .mapbox-container .mapbox-control-btn svg {
                    width: 18px !important;
                    height: 18px !important;
                }
                
                .mapbox-reference-title {
                    font-size: 24px;
                }
                
                .mapbox-reference-image {
                    height: 180px;
                }
                
                .mapbox-mobile-content {
                    padding: 36px 20px 20px;
                }
                
                .mapbox-references-content {
                    width: 95%;
                    max-height: 85vh;
                }
                
                .mapbox-references-header {
                    padding: 20px;
                }
                
                .mapbox-references-header h2 {
                    font-size: 20px;
                }
                
                .mapbox-references-grid {
                    padding: 16px;
                    grid-template-columns: 1fr;
                    gap: 16px;
                }
            }
            
            @media (min-width: 769px) {
                .mapbox-mobile-panel {
                    display: none !important;
                }
                
                .mapbox-sidebar {
                    display: block;
                }
            }
            
            /* Ajustements pour très grands écrans */
            @media (min-width: 1440px) {
                .mapbox-sidebar {
                    width: 480px;
                }
                
                .mapbox-reference-title {
                    font-size: 32px;
                }
                
                .mapbox-reference-image {
                    height: 280px;
                }
            }
            
            /* ================================
               TOOLTIPS ORIGINAUX
               ================================ */
            
            .mapbox-tooltip .mapboxgl-popup-content {
                background: rgba(0, 0, 0, 0.9) !important;
                color: white !important;
                padding: 8px 12px !important;
                border-radius: 6px !important;
                font-size: 14px !important;
                font-weight: 500 !important;
                border: none !important;
                box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
                max-width: 200px !important;
            }
            
            .mapbox-tooltip .mapboxgl-popup-tip {
                border-top-color: rgba(0, 0, 0, 0.9) !important;
            }
            
            .mapbox-tooltip .mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
                border-bottom-color: rgba(0, 0, 0, 0.9) !important;
                border-top-color: transparent !important;
            }
            
            .mapbox-tooltip .mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
                border-right-color: rgba(0, 0, 0, 0.9) !important;
                border-left-color: transparent !important;
            }
            
            .mapbox-tooltip .mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
                border-left-color: rgba(0, 0, 0, 0.9) !important;
                border-right-color: transparent !important;
            }
            
            /* ================================
               MODE SOMBRE (BONUS)
               ================================ */
            
            /* ================================
               MODE SOMBRE (AMÉLIORÉ)
               ================================ */
            
            @media (prefers-color-scheme: dark) {
                .mapbox-container {
                    background: #0f172a !important;
                }
.mapbox-reference-filter {
    background-color: #1e293b !important;
    color: #f1f5f9 !important;
    border: 1px solid #475569 !important;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    margin-right: auto;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23f1f5f9' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.198l3.71-3.97a.75.75 0 111.08 1.04l-4.25 4.54a.75.75 0 01-1.08 0l-4.25-4.54a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


                .mapbox-sidebar,
                .mapbox-mobile-panel {
                    background: #1e293b !important;
                    color: #f1f5f9 !important;
                }
                
                .mapbox-reference-title {
                    color: #f1f5f9 !important;
                }
                
                .mapbox-reference-description {
                    color: #cbd5e1 !important;
                }
                
                .mapbox-reference-year {
                    background: #374151 !important;
                    color: #d1d5db !important;
                    border-color: #4b5563 !important;
                }
                
                .mapbox-reference-family {
                    /* Garde sa couleur d'origine mais avec un meilleur contraste */
                    color: white !important;
                    text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
                }
                
                .mapbox-container .mapbox-control-btn {
                    background: #374151 !important;
                    color: #f1f5f9 !important;
                    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
                }
                
                .mapbox-container .mapbox-control-btn:hover {
                    background: #4b5563 !important;
                    color: #ffffff !important;
                    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3) !important;
                }
                
                .mapbox-container .mapbox-close-btn {
                    background: rgba(55, 65, 81, 0.95) !important;
                    color: #f1f5f9 !important;
                    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
                }
                
                .mapbox-container .mapbox-close-btn:hover {
                    background: rgba(75, 85, 99, 0.95) !important;
                    color: #ffffff !important;
                    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3) !important;
                }
                
                .mapbox-references-overlay {
                    background: rgba(0, 0, 0, 0.8) !important;
                }
                
                .mapbox-references-content {
                    background: #1e293b !important;
                    border: 1px solid #475569 !important;
                }
                
                .mapbox-references-header {
                    background: #334155 !important;
                    border-color: #475569 !important;
                }
                
                .mapbox-references-header h2 {
                    color: #f1f5f9 !important;
                }
                
                .mapbox-reference-card {
                    background: #334155 !important;
                    border-color: #475569 !important;
                }
                
                .mapbox-reference-card:hover {
                    background: #3f4a5f !important;
                    border-color: #64748b !important;
                }
                
                .mapbox-reference-card-title {
                    color: #f1f5f9 !important;
                }
                
                .mapbox-reference-card-year {
                    background: #475569 !important;
                    color: #cbd5e1 !important;
                }
                
                .mapbox-reference-card-family {
                    /* Garde sa couleur d'origine mais avec un meilleur contraste */
                    color: white !important;
                    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !Important;
                }
                
                .mapbox-error-container,
                .mapbox-empty-container {
                    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
                    border-color: #475569 !important;
                }
                
                .mapbox-error-content h3,
                .mapbox-empty-content h3,
                .mapbox-error-content p,
                .mapbox-empty-content p {
                    color: #f1f5f9 !important;
                }
                
                .mapbox-error-icon,
                .mapbox-empty-icon {
                    color: #94a3b8 !important;
                }
                
                .mapbox-loading {
                    background: #006980 !important;
                }
                
                .mapbox-loading-text {
                    color: #f1f5f9 !important;
                }
                
                .mapbox-mobile-handle {
                    background: #64748b !important;
                }
                
                .mapbox-mobile-handle:hover,
                .mapbox-mobile-handle:focus {
                    background: #94a3b8 !important;
                }
                
                /* Scrollbars en mode sombre */
                .mapbox-sidebar-content::-webkit-scrollbar-track {
                    background: #1e293b !important;
                }
                
                .mapbox-sidebar-content::-webkit-scrollbar-thumb {
                    background: #475569 !important;
                }
                
                .mapbox-sidebar-content::-webkit-scrollbar-thumb:hover {
                    background: #64748b !important;
                }
                
                .mapbox-references-grid::-webkit-scrollbar-track {
                    background: #1e293b !important;
                }
                
                .mapbox-references-grid::-webkit-scrollbar-thumb {
                    background: #475569 !important;
                }
                
                .mapbox-references-grid::-webkit-scrollbar-thumb:hover {
                    background: #64748b !important;
                }
            }