/* Carte de France avec Leaflet */
.gv-carte-france-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.gv-carte-france-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2271b1;
}

.gv-carte-legende {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.gv-carte-legende h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #111827;
}

.gv-legende-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.gv-legende-color {
    display: inline-block;
    width: 30px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
}

/* Leaflet map container */
#gv-carte-leaflet {
    width: 100%;
    height: 700px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.leaflet-popup-content {
    margin: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .gv-carte-france-container {
        padding: 10px;
    }
    
    .gv-carte-legende {
        padding: 15px;
    }
    
    #gv-carte-leaflet {
        height: 500px;
    }
}

@media (max-width: 480px) {
    #gv-carte-leaflet {
        height: 400px;
    }
}