/* Day navigator — prev/next week chevrons + a 7-day window of day buttons; the
 * selected day uses the filled (gradient) button. Figma "Frame 139" (168:4411).
 * Built on the gem .button--sm (32px, radius xs); see button.css. */

.actions-datebar {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
}

/* The 7 day buttons share the row equally (Figma: equal-width). */
.actions-datebar-day {
  flex: 1 1 0;
  min-width: 0;
  font-variant-numeric: tabular-nums;
}

/* Icon-only square chevrons (Figma 32×32). */
.actions-datebar-chevron {
  flex: 0 0 auto;
  width: 32px;
  padding: 0;
}
.actions-datebar-chevron.is-disabled {
  color: var(--symbol-disabled);
  pointer-events: none;
  opacity: 0.5;
}
