.reservation-btn-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .reservation-btn {
    min-width: 150px;
    height: 50px;
    background-color: #50a6b5;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .reservation-btn:hover {
    background-color: #4c8994;
  }

  .reservation-modal {
    height: 100vh;
    width: 100vw;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
  }

  .reservation-iframe {
    width: 100%;
    max-width: 1200px;
    height: 80%;
    border: none;
    border-radius: 8px;
  }

  .reservation-modal{
      z-index: 10000;
  }