
/* Composite date field with weekday display */
.date-combo{
  position: relative;
  width: 100%;
}
/* Native date input sits on top to remain clickable; we use opacity for cross-browser showPicker */
#preferred_day_input{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* visually hidden, still interactive */
  cursor: pointer;
 z-index:2; appearance:none; -webkit-appearance:none; background:transparent; border:none; pointer-events:none; z-index:0;}

/* Visible display field */
#preferred_day_display{
  width: 100%;
  height: 48px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--frame, #e5e7eb);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(16,24,40,.08);
  font-size: 18px;         /* matches global 18px input setting */
  line-height: 1.4;
  font-weight: 700;
  color: #111827;
}
#preferred_day_display:focus{
  outline: none;
  border-color: #6366f1; /* brand-ish focus */
  box-shadow: 0 0 0 3px rgba(99,102,241,.25);
}
/* Ensure container matches spacing of original input */
.date-combo + .slots-row { margin-top: 12px; }

#preferred_day_display.is-focused{
  border-color:#6366f1;
  box-shadow:0 0 0 3px rgba(99,102,241,.25);
}
