.fare-calendar {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 4px 0;
}
.fare-calendar__strip {
  display: flex;
  gap: 4px;
  min-width: max-content;
}
.fare-calendar__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  cursor: pointer;
  min-width: 72px;
  transition: transform 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  color: inherit;
}
.fare-calendar__day:hover {
  border-color: #2563eb;
  transform: scale(1.05);
}
.fare-calendar__day--selected {
  border-color: #2563eb;
  background: #eff6ff;
  font-weight: 600;
}
.fare-calendar__day--cheapest {
  border-color: #16a34a;
  background: #f0fdf4;
}
.fare-calendar__date {
  font-size: 11px;
  color: #6b7280;
}
.fare-calendar__price {
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}
.fare-calendar__day--cheapest .fare-calendar__price {
  color: #16a34a;
}
.fare-calendar__empty {
  font-size: 13px;
  color: #6b7280;
  padding: 12px;
}
