/* Estilo del texto clickeable */
.ver-medios {
  cursor: pointer;
  color: #0073aa;
  text-decoration: underline;
}

.ver-medios:hover {
  color: #005077;
}

/* Estilo del fondo oscuro */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Caja flotante */
.modal-box {
  position: relative;
  margin: 5% auto;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Imagen dentro del modal */
.modal-box img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Botón de cerrar (X) */
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
