/* A single, tappable date field keeps date and weekday visually together. */
.dateControl {
  display: flex;
  position: relative;
  gap: 6px;
}

.dateField {
  flex: 1 1 0;
  display: grid;
  place-items: center;
  position: relative;
  height: 34px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f3f5f3;
  color: #385342;
}

.dateControl button {
  flex: 0 0 34px;
}

.dateField span {
  pointer-events: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1px;
}

.dateField input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: .01;
  cursor: pointer;
}

@media (max-width: 680px) {
  .dateControl {
    gap: 8px;
  }

  .dateControl button {
    flex-basis: 46px;
  }

  .dateControl button,
  .dateField {
    height: 40px;
  }

  .dateField span {
    font-size: 14px;
  }
}
