/* Estilos generales del popup */
.popup {
  display: none; /* Inicialmente está oculto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Contenedor del contenido del popup */
.popup-contenido {
  position: relative;
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  max-width: 500px;
  max-height: 80%;
  overflow: hidden;
}

/* Estilo para la imagen */
.popup-imagen {
  width: 100%;
  height: auto;
}

/* Estilo para el botón de cerrar */
.cerrar-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}