/* style.css */

/* Configuration générale */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #006d77;
    margin-bottom: 20px;
}

/* Panneau de contrôle (Sélecteur d'année) */
.controls {
    background: white;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.controls label {
    font-weight: bold;
    margin-right: 10px;
    color: #2a9d8f;
}

select {
    padding: 8px 15px;
    border-radius: 20px;
    border: 2px solid #b7e4c7;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

select:focus {
    border-color: #2a9d8f;
}

/* La Carte */
#map {
    height: 700px;
    width: 100%;
    max-width: 1100px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #fff;
}

/* La Légende */
.legend {
    background: white;
    padding: 10px;
    line-height: 24px;
    color: #555;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    font-size: 13px;
    border: 1px solid #ccc;
}

.legend i {
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 10px;
    opacity: 0.8;
    display: inline-block; /* CRUCIAL : permet d'afficher la taille du carré */
    border: 1px solid rgba(0,0,0,0.2); /* Petit contour pour voir le blanc */
    border-radius: 3px;
}

.legend strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #006d77;
}
    

/* Style par défaut des polygones (départements) */
.leaflet-interactive {
    stroke: #e0e0e0; /* Gris très clair pour les frontières */
    stroke-width: 1px;
    transition: all 0.3s;
}

/* Quand on survole n'importe quel département */
.leaflet-interactive:hover {
    stroke: #2a9d8f; /* Turquoise au survol */
    stroke-width: 3px;
    fill-opacity: 1 !important;
}