.day-first-date-control {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

.day-first-native-date {
  position: absolute !important;
  z-index: 2;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: 42px;
  margin: 0 !important;
  opacity: 0.001;
  cursor: pointer;
}

.day-first-date-display {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line, #cfd4dc);
  border-radius: 8px;
  background: #fff;
  color: var(--ink, #111827);
  font: inherit;
  font-weight: 600;
  letter-spacing: .015em;
  pointer-events: none;
}

.day-first-date-display.is-placeholder { color: var(--muted, #667085); font-weight: 500; }
.day-first-date-display b { color: var(--muted, #667085); font-size: 18px; line-height: 1; }
.day-first-date-control:focus-within .day-first-date-display {
  border-color: var(--primary, var(--brand, #e8502f));
  box-shadow: 0 0 0 3px rgba(49, 72, 170, .13);
}
.day-first-native-date:disabled + .day-first-date-display { background: #f1f3f6; color: #8a91a0; }
