/* Map container (shared — replaces Globe-specific CSS) */
#globeViz {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: #0a0a0c;
}

/* Leaflet overrides for dark theme */
.leaflet-control-zoom a {
    background: rgba(10, 10, 12, 0.9) !important;
    color: #d4af37 !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    backdrop-filter: blur(8px);
}

.leaflet-control-zoom a:hover {
    background: rgba(30, 30, 35, 0.95) !important;
}

.leaflet-control-attribution {
    background: rgba(10, 10, 12, 0.7) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 9px;
}

.leaflet-control-attribution a {
    color: rgba(212, 175, 55, 0.5) !important;
}

/* Country tooltip (gold) */
.country-tooltip {
    background: rgba(0, 0, 0, 0.88);
    color: #d4af37;
    padding: 6px 12px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Country tooltip — traveler mode green variant */
.country-tooltip-green {
    background: rgba(0, 0, 0, 0.88);
    color: #7bcb8a;
    padding: 6px 12px;
    border: 1px solid rgba(123, 203, 138, 0.55);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.leaflet-tooltip-top:before {
    border-top-color: rgba(0, 0, 0, 0.88) !important;
}

.leaflet-tooltip-bottom:before {
    border-bottom-color: rgba(0, 0, 0, 0.88) !important;
}

/* Beta country labels (custom markers replacing tile labels) */
.beta-country-label {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.beta-country-label span {
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.7);
    pointer-events: none;
}