/**
 * Map Styles
 * Leaflet.js customizations
 */

.prix-m2-map {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    padding: 0;
}

.leaflet-popup-content {
    margin: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Custom map controls */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
}

.leaflet-control-zoom a {
    border-radius: 8px !important;
    border: none !important;
}

/* Map legend */
.map-legend {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.map-legend h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 700;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.legend-label {
    font-size: 13px;
    color: #6C757D;
}
