/* Map Labels */
.map-label {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
    text-shadow: 
        -1px -1px 0 #3b82f6,  
         1px -1px 0 #3b82f6,
        -1px  1px 0 #3b82f6,
         1px  1px 0 #3b82f6;
    text-align: center;
    white-space: nowrap;
}

.dark .map-label {
    color: #ffffff;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}

/* Hide labels when zoomed out */
.hide-map-labels .map-label {
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.2s ease-in-out;
}
