/* Stile per il contenitore della mappa */
#map-container {
    width: 100%;
}

/* Stile per la mappa */
#map {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Stile per i popup */
.leaflet-popup-content-wrapper {
    border-radius: 6px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
    margin: 10px;
}

/* Stile per il pulsante nel popup */
.leaflet-popup-content button:hover {
    background-color: #2960c2;
    transition: background-color 0.3s ease;
}