.marker-info {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 30, 30, 0.95);
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.info-card {
  padding: 20px;
  background: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: white;
}

.card-header {
  display: flex;
  justify-content: space-between; /* Allinea il titolo e il pulsante */
  align-items: center; /* Centra verticalmente */
}

.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px; /* Dimensione dell'icona X */
  cursor: pointer;
}

.directions-btn {
  background: #444;
  border: none;
  border-radius: 5px;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  margin-top: 10px; /* Spazio tra le informazioni e il pulsante delle indicazioni */
}
