/* Stili di base per layout e mappa */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  display: flex;
  font-family: Arial, sans-serif;
}

#map {
  height: 100vh; /* Occupare l'intero viewport in altezza */
  width: 100vw; /* Occupare l'intero viewport in larghezza */
}

/* Stile personalizzato per marker dinamici */
.custom-marker {
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Icona del marker nell'elenco */
.marker-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}

/* Stile per le informazioni del marker */
.marker-info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #333;
}

.marker-info strong {
  font-size: 15px;
  color: #000;
  margin-bottom: 3px;
}

/* Stile per le informazioni di distanza */
.distance-info {
  font-size: 13px;
  color: #666;
}

.distance-info div {
  margin-top: 5px;
}

/* Stile specifico per Sant Feliu e Esplugues */
.sant-feliu {
  color: black; /* Colore per Sant Feliu */
}

.esplugues {
  color: blue; /* Colore per Esplugues */
}
