body { margin: 0; font-family: Arial, sans-serif; }

.oculto { display: none; }

.contenedor {
  background-color: lightblue;
  min-height: 100vh;
  padding: 24px;
  transition: opacity .25s ease;
}

.contenedor.deshabilitado {
  opacity: 0.3;
  pointer-events: none;
}

/* Modal (oculta por defecto) */
.modal {
  display: none;               /* << importante */
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  justify-content: center;
  align-items: center;
}

/* clase que muestra la modal */
.modal.show {
  display: flex;
}

/* contenedor de la caja */
.modal-contenido {
  width: 80%;
  max-width: 1000px;
  background: #f8f8f8;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* header */
.modal-header {
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #ccc;
  font-weight: bold;
}

/* cuerpo: aquí está el iframe */
.modal-body {
  background: #f9f9e7;
  padding: 12px;
}

/* iframe estilo */
#modalIframe {
  width: 100%;
  height: 520px; /* ajusta si querés más grande */
  border: none;
}

/* cerrar */
.cerrar {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

  
