/**
 * AllOfBD Booking Engine Styles
 */
.allofbd-booking-box {
  max-width: 480px;
}

#allofbd-btn-submit-booking:hover {
  filter: brightness(1.08);
}

.allofbd-booking-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.allofbd-booking-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.allofbd-booking-switch-ui {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #c5cecf;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.allofbd-booking-switch-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(11, 46, 51, 0.18);
  transition: transform 0.2s ease;
}

.allofbd-booking-switch input:checked + .allofbd-booking-switch-ui {
  background: #0e4f56;
}

.allofbd-booking-switch input:checked + .allofbd-booking-switch-ui::after {
  transform: translateX(20px);
}

.allofbd-booking-switch input:disabled + .allofbd-booking-switch-ui {
  opacity: 0.6;
}

.allofbd-booking-switch-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0b2e33;
  min-width: 2.2em;
}
