.nc-map-container {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#nc-map {
    width: 100%;
    height: 100%;
}

.map-marker {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.map-marker:hover {
    transform: scale(1.5);
}

.map-marker.sud {
    background-color: #003f87; /* Bleu du drapeau kanak */
}

.map-marker.nord {
    background-color: #d21034; /* Rouge du drapeau kanak */
}

.map-marker.iles {
    background-color: #169b62; /* Vert du drapeau kanak */
}

.commune-popup {
    font-family: Arial, sans-serif;
}

.commune-popup h4 {
    margin: 0;
    padding: 0 0 5px 0;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.commune-popup p {
    margin: 5px 0;
    font-size: 14px;
}

.province-filter {
    margin-bottom: 15px;
    text-align: center;
}

.province-filter button {
    margin: 0 5px;
    padding: 5px 15px;
    border-radius: 20px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.province-filter button.active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px currentColor;
}

.province-filter button.all {
    background-color: #FFE000; /* Jaune */
    color: #333;
}

.province-filter button.sud {
    background-color: #003f87; /* Bleu */
}

.province-filter button.nord {
    background-color: #d21034; /* Rouge */
}

.province-filter button.iles {
    background-color: #169b62; /* Vert */
}
