.booking-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: white;
}

.booking-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  overflow-y: auto;
}

.booking-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}

.closed {
  text-align: center;
  margin-top: 1.5rem;
  text-decoration: underline;
  color: red;
  font-size: 1.5rem;
  padding: 0 1rem;
}

.booking-bottom {
  max-width: 1366px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 90rem;
  height: auto;
}

.booking-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.booking-desc {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

#forms {
  display: none;
}

.booking-bottom-forms {
  border: solid 3px red;
  display: none;
}

#desktop_view {
  display: none;
}

@media screen and (min-width: 1024px) {
  .booking-bottom {
    max-width: 1366px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding-bottom: 1rem;
  }

  #forms {
    display: block;
    width: 100%;
  }

}

@media screen and (max-width: 596px) {
  .closed {
    margin-top: 0rem;
  }
  .closedDesc {
    margin: 0;
  }   
}

.booking-column {
  background-color: #ffffff;
  overflow-y: auto;
  margin: 1rem 1rem 0rem 1rem;
}

.plugin-column {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  min-height: 500px;
}

.booking-iframe {
  width: 100%;
  min-height: 1000px;
  border: none;
}

@media screen and (max-width: 480px) {
  .booking-content {
    gap: 0rem;
  }
  .booking-bottom {
    gap: 0rem;
  }
  .closed {
    font-size: 1.3rem;
  }
  .booking-title {
    font-size: 1.3rem;
  }
  .booking-desc {
    font-size: 1rem;
  }
}
