/* Desktop: cards fit their content; controls retain their original edge positions. */
#date-select .date-strip-shell { position: relative; }
#date-select .date-strip {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: start;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
#date-select .date-strip::-webkit-scrollbar { display: none; }
#date-select .date-strip > * { min-width: 0; padding-inline: 20px; white-space: nowrap; }
#date-select .date-strip:focus-visible {
  outline: 2px solid #28649B;
  outline-offset: 3px;
}
#date-select .date-strip-arrow {
  position: absolute;
  top: 50%;
  margin-top: -14px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #ccd6e3;
  border-radius: 0;
  background: #fff;
  color: #566b86;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: color 120ms ease, border-color 120ms ease;
}
#date-select .date-strip-arrow--previous { left: -14px; }
#date-select .date-strip-arrow--next { right: -14px; }
#date-select .date-strip-arrow svg { width: 16px; height: 16px; flex: none; }
#date-select .date-strip-arrow:focus-visible {
  outline: 2px solid #28649B;
  outline-offset: 3px;
}
#date-select .date-strip-arrow[aria-disabled="true"] {
  color: #97a5b7;
  border-color: #dce2eb;
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  #date-select .date-strip-arrow:not([aria-disabled="true"]):hover {
    color: #28649B;
    border-color: #28649B;
  }
}
