.modal {
    display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);

  /* 🔽 Añade estas líneas para centrar contenido */
  justify-content: center;
  align-items: center;
  }

  .modal-contenido {
    position: relative;
  max-width: 700px;
  width: 90%;
  text-align: center;
  }

  .imagen-modal {
    width: 350px;
    border-radius: 10px;
  }

  .cerrar {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
  }

  .flecha {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: #FFC926;
    cursor: pointer;
    user-select: none;
  }

  .prev { left: 10px; }
  .next { right: 10px; }

  #abrirModal, #abrirModal2, #abrirModal3 {
    width: 100%;
  }

  .leaflet-control-layers-base label,
        .leaflet-control-layers-overlays label {
          text-align: left;
        }

        .legend {
            background: white;
            padding: 10px;
            text-align: left;
        }

        .legend-item {
            display: flex;
            align-items: center;
            color: black;
        }
        .legend-item img {
            margin-right: 8px;
        }



  /* 📱 Para pantallas de hasta 600px de ancho (típicos móviles) */
@media (max-width: 800px) {
  #abrirModal, #abrirModal2, #abrirModal3 {
    width: 40%;
  }

  .container { 

    margin-left: 20px;
    margin-right: 20px;
    width: 90%;

   }
}