
.hb_booking_guest_info-wrapper {
  background-color: #1a1c29; /* gray background */
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.hb_booking_guest_info-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.hb_booking_guest_info-title {
  font-weight: bold;
  font-size: 1.2rem;
}

.hb_booking_is_me_radio_button-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}



.hb_booking_guest_info-tooltip {
  font-size: 1rem;
  color: #c4001a;
  cursor: pointer;
}

/* Form Grid */
.hb_booking_guest_info-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hb_booking_guest_info-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hb_booking_guest_info-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

/* Labels */
.hb_booking_guest_info-label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #eeeff1;
}

.hb_booking_guest_info-label .required {
  color: red;
  margin-left: 4px;
}

/* Inputs */
.hb_booking_guest_info-input,
.hb_booking_guest_info-select {
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  background-color: #e5e6e9;
  font-size: 1rem;
  width: 100%;
  color: #222;
}

.hb_booking_guest_info-input::placeholder {
  color: #666;
}

.hb_booking_guest_info-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,40 70,90 120,40' stroke='%23666' stroke-width='20' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}