.booking textarea {
  color: #eee;
  background: #171719;
  border: 1px solid #343434;
  border-radius: 5px;
  padding: 12px;
  resize: vertical;
  min-height: 62px;
}

.booking .form-wide { grid-column: 1 / -1; }

.booking-consent {
  display: flex;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 9px !important;
  margin-top: 15px;
  color: #bbb;
  font-size: 10px !important;
  line-height: 1.45;
  cursor: pointer;
}

.booking-consent input {
  width: 16px;
  height: 16px;
  flex: none;
  margin: 0;
  padding: 0;
  accent-color: var(--red);
}

.booking-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.booking-status {
  display: none;
  margin-top: 14px;
  padding: 11px 12px;
  border-radius: 5px;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.booking-status.show { display: block; }
.booking-status.success { color: #d5f7df; border: 1px solid #398a55; background: rgba(48, 146, 83, .2); }
.booking-status.error { color: #ffd9d9; border: 1px solid #a83b3f; background: rgba(180, 38, 45, .2); }
.booking-status.pending { color: #fff1cc; border: 1px solid #8f712e; background: rgba(160, 116, 27, .2); }
.booking button[disabled] { opacity: .65; cursor: wait; transform: none; }

@media (max-width: 560px) {
  .booking .form-wide { grid-column: auto; }
}
