body {
  margin: 0;
  padding: 0;
}

#map {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Contenedor de los controles */
#map-controls {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  gap: 10px;
}

/* Estilo de los botones */
#map-controls button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #348fcc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Cambiar el color al pasar el cursor sobre los botones */
#map-controls button:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}

/* Efecto al hacer clic en el botón */
#map-controls button:active {
  background-color: #004c82;
  transform: scale(0.95);
}

.small-text {
  font-size: 0.8em;
  margin: 0;
  line-height: 1.3;
  color: #666;
}

.item-title {
  color: #666;
}
