/* Force all select dropdowns and their options to have visible text on a dark background for accessibility in dark themes */
.field select,
.booking-form-field select,
select,
select option {
  color: #fff !important;
  background: #23272f !important;
}

.field select:focus,
.booking-form-field select:focus,
select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(26,140,255,0.18) !important;
}
