/* Leaflet Map Styles - Light Mode */

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.leaflet-popup-tip {
    background: var(--bg-card);
}

.popup-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.popup-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 2px 0;
}

/* Custom Marker Labels */
.marker-label {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--primary);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    font-family: 'Inter', system-ui, sans-serif;
}

/* Leaflet Controls Override */
.leaflet-control-zoom a {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-light) !important;
}

.leaflet-control-zoom a:hover {
    background: var(--bg-primary) !important;
}

.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.8) !important;
    font-size: 10px;
}
