/* Fondo oscuro detrás del modal */
  #modalOverlay {
    display: none;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  /* Contenedor del modal centrado */
  #divReservar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    height: 90%;
    max-height: 100%;
    background: #fff;
    box-shadow: 2.7px 5.4px 5.4px rgba(0, 0, 0, 0.42);
    border-radius: 10px;
    overflow: hidden;
    z-index: 9999;
  }

  /* Botón de cierre */
  #divReservar img[onclick="cierraReserva()"] {
    position: absolute;
    right: 7px;
    top: 7px;
    padding: 5px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 10000;
  }

  /* iFrame ocupa el resto del contenedor */
  #divReservar iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Responsive: ajuste adicional para pantallas muy pequeñas */
  @media (max-width: 500px) {
    #divReservar {
      width: 95%;
      height: 95%;
    }
  }