.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 10px;
  border-radius: 5px;
  max-width: 90%;  /* Máximo ancho permitido */
  max-height: 90vh; /* Máximo alto (viewport height) */
  overflow: auto;   /* Para contenido muy grande */
  text-align: center; /* Centrar imagen */
}

.modal-content img {
  max-width: 100%;  /* La imagen no excederá el ancho del modal */
  height: auto;     /* Mantiene proporciones */
  display: block;
  margin: 0 auto;   /* Centrar imagen */
}