/* Vertical divider for booking form columns */
.booking-form-divider {
  width: 1.5px;
  background: #e5e7eb;
  margin: 0 24px;
  min-height: 220px;
  align-self: stretch;
  border-radius: 2px;
  display: block;
}
@media (max-width: 800px) {
  .booking-form-divider {
    display: none;
  }
}
/* Two-column layout for booking form */
.booking-form-2col .booking-form-row {
  display: flex;
  gap: 32px;
}
.booking-form-2col .booking-form-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 800px) {
  .booking-form-2col .booking-form-row {
    flex-direction: column;
    gap: 0;
  }
  .booking-form-2col .booking-form-col {
    margin-bottom: 18px;
  }
}
/*
  GitHub-inspired Booking Page Styles for Webvelox
  -----------------------------------------------
  Styles for booking form, cards, and layout.
*/
.booking-title {
  font-size:2.2rem;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:-1px;
  color:#24292f;
}
.booking-desc {
  color:#57606a;
  font-size:1.13rem;
  margin-bottom:36px;
}
/* Responsive booking card */
.booking-card {
  background: #fff;
  border: 1.5px solid #d0d7de;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(36,41,47,0.06);
  padding: 32px 28px 24px 28px;
  transition: box-shadow 0.18s;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.booking-card:hover {
  box-shadow: 0 6px 24px rgba(36,41,47,0.13);
  border-color: #0969da;
}
.booking-form-label {
  font-weight:600;
  margin-bottom:6px;
  display:block;
}
.booking-form-input, .booking-form-select, .booking-form-textarea {
  width:100%;
  padding:10px 12px;
  margin-top:6px;
  border-radius:7px;
  border:1.5px solid #d0d7de;
  font-size:1rem;
  margin-bottom:18px;
  background:#f6f8fa;
  transition: border-color 0.15s;
}
.booking-form-input:focus, .booking-form-select:focus, .booking-form-textarea:focus {
  border-color: #0969da;
  outline: none;
}
.booking-form-file {
  margin-top:6px;
  margin-bottom:18px;
}
.booking-form-submit {
  width:100%;
  background:#0969da;
  color:#fff;
  font-weight:700;
  border:none;
  border-radius:7px;
  padding:12px 0;
  font-size:1.08rem;
  cursor:pointer;
  transition: background 0.15s;
}
.booking-form-submit:hover {
  background:#0550ae;
}
@media (max-width: 600px) {
  .booking-card {
    padding: 12px 2vw 10px 2vw;
    max-width: 100vw;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .booking-title { font-size: 1.4rem; }
  .booking-form-2col .booking-form-row {
    flex-direction: column;
    gap: 0;
  }
  .booking-form-2col .booking-form-col {
    margin-bottom: 14px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
