/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #f7f7f7;
}

/* Título */
h1 {
  background-color: #630000;
  color: white;
  padding: 1rem;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

/* Botón de Mostrar Rutas (dentro del flujo normal) */
#mostrarRutas {
  margin: 1rem auto;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #4caf50;
  color: white;
  
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

#mostrarRutas:hover {
  background-color: #45a049;
}

/* Contenedor del mapa */
#map {
  height: 80vh;
  width: 100%;
  margin: 0 auto;
}

/* Leyenda del mapa */
.info.legend {
  background: white;
  padding: 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.info.legend h4 {
  margin: 0 0 5px;
  font-size: 16px;
}

/* Estilos responsivos */
@media (max-width: 600px) {
  h1 {
    font-size: 1.2rem;
    padding: 0.8rem;
  }

  #mostrarRutas {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    margin: 0.8rem auto;
  }

  .info.legend {
    font-size: 12px;
    padding: 0.5rem;
  }
}
@media (max-width: 600px) {
  .info.legend {
    font-size: 10px;
    padding: 6px 8px;
    line-height: 1.2;
    max-width: 85vw;
    bottom: 10px !important;
    right: 10px !important;
  }

  .info.legend h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .info.legend div {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .info.legend span {
    font-size: 14px;
  }
}

