/**
 * Styles pour la carte des départements
 */

.cp-departements-map-container {
    display: block;
    margin: 20px auto;
}

.cp-departements-map-container svg {
    width: 100%;
    height: auto;
    display: block;
}

.cp-departements-map-container svg path {
    fill-opacity: 1;
    transition: fill-opacity 0.2s ease;
}

.cp-departements-map-container svg path:hover {
    fill-opacity: 0.6;
}