/* ============================================================
   Accommodation availability calendar — #138
   ============================================================ */

/* ── Theming contract ─────────────────────────────────────────
   All visual tokens live here as CSS custom properties.
   To theme the calendar, override any --bc-cal-* variable in
   your template's CSS:

     .bc-accommodation { --bc-cal-primary: #your-brand; }

   Variables are defined on :root so they remain accessible when
   the calendar DOM moves into the bottom sheet (position:fixed,
   appended to body).
   ============================================================ */

:root {
  /* Primary action color — drives selected dates, buttons, focus rings */
  --bc-cal-primary:          #2563eb;
  --bc-cal-primary-dark:     #1d4ed8;
  --bc-cal-primary-range:    #dbeafe;
  --bc-cal-primary-range-bd: #93c5fd;
  --bc-cal-primary-range-tx: #1e3a8a;
  --bc-cal-primary-disabled: #93c5fd;
  --bc-cal-primary-focus:    rgba(37, 99, 235, 0.15);

  /* Available state */
  --bc-cal-available-bg:     #f0fdf4;
  --bc-cal-available-bd:     #bbf7d0;
  --bc-cal-available-tx:     #14532d;
  --bc-cal-available-bg-hv:  #dcfce7;
  --bc-cal-available-bd-hv:  #86efac;

  /* Departure-only stripes */
  --bc-cal-stripe-a:         #f9fafb;
  --bc-cal-stripe-b:         #e5e7eb;

  /* Blocked / unavailable / past */
  --bc-cal-blocked-bg:       #f9fafb;
  --bc-cal-blocked-tx:       #d1d5db;

  /* Text hierarchy */
  --bc-cal-tx:               #374151;
  --bc-cal-tx-strong:        #111827;
  --bc-cal-tx-muted:         #6b7280;
  --bc-cal-tx-notice:        #4b5563;

  /* Surface & borders */
  --bc-cal-surface:          #ffffff;
  --bc-cal-border:           #e5e7eb;
  --bc-cal-border-input:     #d1d5db;
  --bc-cal-border-light:     #f3f4f6;
  --bc-cal-border-hover:     #9ca3af;

  /* Shimmer animation */
  --bc-cal-shimmer-a:        #e5e7eb;
  --bc-cal-shimmer-b:        #f3f4f6;

  /* Semantic */
  --bc-cal-warning:          #f59e0b;
  --bc-cal-error:            #b91c1c;
  --bc-cal-error-bg:         #fef2f2;
  --bc-cal-error-bd:         #fecaca;

  /* Confirmation success panel */
  --bc-cal-confirm-bg:       #f0fdf4;
  --bc-cal-confirm-bd:       #bbf7d0;
  --bc-cal-confirm-tx:       #14532d;
  --bc-cal-confirm-tx-muted: #166534;
  --bc-cal-confirm-notice:   #4b5563;

  /* Bottom sheet chrome */
  --bc-cal-backdrop:         rgba(0, 0, 0, 0.45);
  --bc-cal-sheet-handle:     #d1d5db;
  --bc-cal-sheet-close-bg:   #f3f4f6;
  --bc-cal-sheet-close-tx:   #374151;
  --bc-cal-sheet-close-bg-hv: #e5e7eb;
}

/* ── Container ────────────────────────────────────────────── */

.bc-accommodation {
  font-family: inherit;
  max-width: 720px;
}

/* Calendar wrapper */
.bc-calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Month block */
.bc-calendar__month {
  flex: 1 1 300px;
  min-width: 280px;
}

.bc-calendar__month-header {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* 7-column grid: Mon–Sun */
.bc-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.bc-calendar__dow-header {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bc-cal-tx-muted);
  padding: 4px 0;
}

/* Base cell */
.bc-calendar__cell {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  border: 1px solid transparent;
  transition: background-color 0.1s ease, border-color 0.1s ease;
  user-select: none;
}

.bc-calendar__cell--empty {
  cursor: default;
}

/* Day number label */
.bc-calendar__day-number {
  line-height: 1;
}

/* Rate overlay — populated by #139 (nightlyRates endpoint) */
.bc-calendar__cell-price {
  font-size: 0.625rem;
  color: var(--bc-cal-tx-muted);
  line-height: 1;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}

/* ── Day states ───────────────────────────────────────────── */

/* Loading skeleton */
.bc-calendar__cell--loading {
  background: linear-gradient(90deg, var(--bc-cal-shimmer-a) 25%, var(--bc-cal-shimmer-b) 50%, var(--bc-cal-shimmer-a) 75%);
  background-size: 200% 100%;
  animation: bc-shimmer 1.4s infinite;
  cursor: default;
  pointer-events: none;
}

@keyframes bc-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Available — selectable as arrival */
.bc-calendar__cell--available {
  background-color: var(--bc-cal-available-bg);
  border-color: var(--bc-cal-available-bd);
  color: var(--bc-cal-available-tx);
}

.bc-calendar__cell--available:hover {
  background-color: var(--bc-cal-available-bg-hv);
  border-color: var(--bc-cal-available-bd-hv);
}

/* Arrival-only (departure not allowed here) */
.bc-calendar__cell--arrival-only {
  background-color: var(--bc-cal-available-bg);
  border-color: var(--bc-cal-available-bd);
  color: var(--bc-cal-available-tx);
}

.bc-calendar__cell--arrival-only:hover {
  background-color: var(--bc-cal-available-bg-hv);
}

/* Departure-only — striped, not selectable as arrival */
.bc-calendar__cell--departure-only {
  background: repeating-linear-gradient(
    135deg,
    var(--bc-cal-stripe-a),
    var(--bc-cal-stripe-a) 4px,
    var(--bc-cal-stripe-b) 4px,
    var(--bc-cal-stripe-b) 8px
  );
  color: var(--bc-cal-tx-muted);
  cursor: not-allowed;
}

/* Unavailable / blocked */
.bc-calendar__cell--unavailable {
  background-color: var(--bc-cal-blocked-bg);
  color: var(--bc-cal-blocked-tx);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Past dates */
.bc-calendar__cell--past {
  color: var(--bc-cal-blocked-tx);
  cursor: not-allowed;
  pointer-events: none;
}

/* Min-stay warning indicator (on hover, via title tooltip by browser) */
.bc-calendar__cell--min-stay-warning::after {
  content: '!';
  position: absolute;
  top: 2px;
  right: 3px;
  font-size: 0.5rem;
  color: var(--bc-cal-warning);
  font-weight: 700;
}

/* Selected arrival */
.bc-calendar__cell--selected-arrival {
  background-color: var(--bc-cal-primary);
  border-color: var(--bc-cal-primary-dark);
  color: var(--bc-cal-surface);
  cursor: default;
}

/* In-range days */
.bc-calendar__cell--selected-range {
  background-color: var(--bc-cal-primary-range);
  border-color: var(--bc-cal-primary-range-bd);
  color: var(--bc-cal-primary-range-tx);
  border-radius: 0;
}

/* Selected departure */
.bc-calendar__cell--selected-departure {
  background-color: var(--bc-cal-primary);
  border-color: var(--bc-cal-primary-dark);
  color: var(--bc-cal-surface);
  cursor: default;
}

/* ── Loading skeleton block ───────────────────────────────── */
.bc-calendar__loading {
  width: 100%;
}

.bc-skeleton--calendar-header {
  display: block;
  height: 1.25rem;
  width: 8rem;
  margin: 0 auto 0.75rem;
  background: var(--bc-cal-shimmer-a);
  border-radius: 4px;
}

.bc-skeleton--calendar-grid {
  height: 200px;
  background: var(--bc-cal-shimmer-a);
  border-radius: 4px;
}

/* ── Price preview panel shell ────────────────────────────── */
.bc-accommodation__price-preview {
  margin-top: 1.5rem;
}

/* ── Mobile: single-column below 768px ───────────────────── */
@media (max-width: 767px) {
  .bc-calendar {
    flex-direction: column;
  }

  .bc-calendar__month {
    min-width: 0;
  }
}

/* ============================================================
   Mobile bottom sheet — #140
   ============================================================ */

/* Sheet container: covers the full viewport */
.bc-bottom-sheet {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

/* Backdrop */
.bc-bottom-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: var(--bc-cal-backdrop);
  opacity: 0;
  transition: opacity 300ms ease;
}

.bc-bottom-sheet--open .bc-bottom-sheet__backdrop {
  opacity: 1;
}

/* Sliding panel */
.bc-bottom-sheet__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bc-cal-surface);
  border-radius: 16px 16px 0 0;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 300ms ease;
  display: flex;
  flex-direction: column;
}

.bc-bottom-sheet--open .bc-bottom-sheet__panel {
  transform: translateY(0);
}

/* Drag handle */
.bc-bottom-sheet__handle {
  width: 36px;
  height: 4px;
  background: var(--bc-cal-sheet-handle);
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
  cursor: grab;
}

/* Header */
.bc-bottom-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem 0.5rem;
  flex-shrink: 0;
  cursor: grab;
}

.bc-bottom-sheet__title {
  font-weight: 600;
  font-size: 1rem;
}

.bc-bottom-sheet__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: var(--bc-cal-sheet-close-bg);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--bc-cal-sheet-close-tx);
}

.bc-bottom-sheet__close:hover {
  background: var(--bc-cal-sheet-close-bg-hv);
}

/* Body — calendar is moved here while the sheet is open */
.bc-bottom-sheet__body {
  padding: 0.75rem 1rem 1.5rem;
  overflow-y: auto;
  flex: 1;
}

/* Trigger button — hidden on desktop, shown on mobile */
.bc-bottom-sheet-trigger {
  display: none;
}

@media (max-width: 767px) {
  /* Hide the inline calendar — it lives inside the bottom sheet on mobile.
     The selector stops matching once the calendar moves into the sheet body,
     which automatically makes it visible without any JS class toggling. */
  .bc-accommodation > .bc-calendar {
    display: none;
  }

  .bc-bottom-sheet-trigger {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bc-cal-primary);
    color: var(--bc-cal-surface);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
  }

  .bc-bottom-sheet-trigger:hover {
    background-color: var(--bc-cal-primary-dark);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bc-bottom-sheet__panel,
  .bc-bottom-sheet__backdrop {
    transition: none;
  }
}

/* ============================================================
   Option controls — #142
   ============================================================ */

.bc-accommodation__options {
  margin-top: 1.5rem;
}

/* A single label + control row */
.bc-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bc-cal-border-light);
}

.bc-option-row:last-child {
  border-bottom: none;
}

.bc-option-row__label {
  font-size: 0.875rem;
  color: var(--bc-cal-tx);
}

/* Stepper: −  N  + */
.bc-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bc-stepper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid var(--bc-cal-border-input);
  border-radius: 50%;
  background: var(--bc-cal-surface);
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--bc-cal-tx);
}

.bc-stepper__btn:hover {
  background: var(--bc-cal-border-light);
  border-color: var(--bc-cal-border-hover);
}

.bc-stepper__value {
  min-width: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-cal-tx-strong);
}

/* Toggle label wraps checkbox + text */
.bc-option-row__label--toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.bc-toggle__checkbox {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
  accent-color: var(--bc-cal-primary);
  flex-shrink: 0;
}

/* Add-on section with heading */
.bc-option-section {
  padding-top: 0.25rem;
}

.bc-option-section__heading {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bc-cal-tx-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0 0.25rem;
}

/* ============================================================
   Price preview panel — #141
   ============================================================ */

.bc-accommodation__price-preview {
  margin-top: 1.5rem;
  border: 1px solid var(--bc-cal-border);
  border-radius: 8px;
  padding: 1rem;
  background: var(--bc-cal-surface);
}

/* Loading skeleton — fixed height reserves space, prevents layout jump */
.bc-price-preview__skeleton {
  height: 120px;
  background: linear-gradient(90deg, var(--bc-cal-shimmer-a) 25%, var(--bc-cal-shimmer-b) 50%, var(--bc-cal-shimmer-a) 75%);
  background-size: 200% 100%;
  animation: bc-shimmer 1.4s infinite;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .bc-price-preview__skeleton {
    animation: none;
    background: var(--bc-cal-shimmer-a);
  }
}

/* Line-item definition list — 2-column label/amount grid */
.bc-price-preview__items {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 0.375rem;
  margin: 0;
}

.bc-price-preview__label {
  font-size: 0.875rem;
  color: var(--bc-cal-tx);
}

.bc-price-preview__amount {
  font-size: 0.875rem;
  color: var(--bc-cal-tx);
  text-align: right;
  margin-left: 1rem;
}

/* Total row — visually separated */
.bc-price-preview__label--total,
.bc-price-preview__amount--total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bc-cal-tx-strong);
  border-top: 1px solid var(--bc-cal-border);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}

/* Error message */
.bc-price-preview__error {
  font-size: 0.875rem;
  color: var(--bc-cal-error);
  margin: 0;
}

/* ============================================================
   Checkout form — #143
   ============================================================ */

.bc-accommodation__checkout {
  margin-top: 1.5rem;
}

.bc-checkout-form {
  border: 1px solid var(--bc-cal-border);
  border-radius: 8px;
  padding: 1rem;
  background: var(--bc-cal-surface);
}

/* Form field row */
.bc-checkout__field {
  margin-bottom: 0.875rem;
}

.bc-checkout__field:last-of-type {
  margin-bottom: 0;
}

/* Label wraps input (click activates field) */
.bc-checkout__label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--bc-cal-tx);
}

.bc-checkout__input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--bc-cal-border-input);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--bc-cal-tx-strong);
  background: var(--bc-cal-surface);
  box-sizing: border-box;
  transition: border-color 0.1s ease;
}

.bc-checkout__input:focus {
  outline: none;
  border-color: var(--bc-cal-primary);
  box-shadow: 0 0 0 2px var(--bc-cal-primary-focus);
}

.bc-checkout__input--error {
  border-color: var(--bc-cal-error);
}

/* Inline field error */
.bc-checkout__field-error {
  font-size: 0.75rem;
  color: var(--bc-cal-error);
  min-height: 1em;
}

/* Actions row */
.bc-checkout__actions {
  margin-top: 1rem;
}

/* Submit button */
.bc-checkout__submit {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--bc-cal-primary);
  color: var(--bc-cal-surface);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

.bc-checkout__submit:hover:not(:disabled) {
  background-color: var(--bc-cal-primary-dark);
}

.bc-checkout__submit:disabled {
  background-color: var(--bc-cal-primary-disabled);
  cursor: not-allowed;
}

/* Booking error banner */
.bc-checkout__error {
  margin-top: 0.75rem;
}

.bc-checkout__error-text {
  font-size: 0.875rem;
  color: var(--bc-cal-error);
  margin: 0;
  padding: 0.625rem 0.875rem;
  background: var(--bc-cal-error-bg);
  border: 1px solid var(--bc-cal-error-bd);
  border-radius: 6px;
}

/* Confirmation panel */
.bc-checkout__confirm {
  border: 1px solid var(--bc-cal-confirm-bd);
  border-radius: 8px;
  padding: 1rem;
  background: var(--bc-cal-confirm-bg);
  margin-top: 0.5rem;
}

.bc-checkout__confirm-heading {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bc-cal-confirm-tx);
  margin: 0 0 0.5rem;
}

.bc-checkout__confirm-ref,
.bc-checkout__confirm-total,
.bc-checkout__confirm-notice {
  font-size: 0.875rem;
  color: var(--bc-cal-confirm-tx-muted);
  margin: 0.25rem 0 0;
}

.bc-checkout__confirm-total {
  font-weight: 600;
}

.bc-checkout__confirm-notice {
  color: var(--bc-cal-confirm-notice);
  margin-top: 0.5rem;
  font-size: 0.8125rem;
}

/* ── Multi-resource picker (#resource-picker) ─────────────────── */

.bc-resource-picker {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.bc-resource-picker__card {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--bc-cal-border);
  border-radius: 8px;
  background: var(--bc-cal-surface);
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.bc-resource-picker__card:hover {
  border-color: var(--bc-cal-primary-disabled);
  box-shadow: 0 2px 8px var(--bc-cal-primary-focus);
}

.bc-resource-picker__card--active {
  border-color: var(--bc-cal-primary);
  box-shadow: 0 2px 8px var(--bc-cal-primary-focus);
}

.bc-resource-picker__card:focus-visible {
  outline: 2px solid var(--bc-cal-primary);
  outline-offset: 2px;
}

.bc-resource-picker__title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--bc-cal-tx-strong);
}

.bc-resource-picker__persons {
  font-size: 0.8125rem;
  color: var(--bc-cal-tx-muted);
}

.bc-resource-picker__badge {
  display: inline-block;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.125rem;
}

.bc-resource-picker__badge--available {
  background: var(--bc-cal-available-bg);
  color: var(--bc-cal-available-tx);
  border: 1px solid var(--bc-cal-available-bd);
}

.bc-resource-picker__badge--unavailable {
  background: var(--bc-cal-error-bg);
  color: var(--bc-cal-error);
  border: 1px solid var(--bc-cal-error-bd);
}

.bc-resource-picker__badge--insufficient-capacity {
  background: #fefce8;
  color: #854d0e;
  border: 1px solid #fef08a;
}

.bc-resource-picker__badge--unknown {
  background: var(--bc-cal-border-light);
  color: var(--bc-cal-tx-muted);
  border: 1px solid var(--bc-cal-border);
}

/* In multi-mode, remove the 720 px max-width cap on the shared calendar */
.bc-search-page__multi .bc-accommodation {
  max-width: none;
}

/* ── Picker card meta row (persons + from-price) ────────────────── */

.bc-resource-picker__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
}

.bc-resource-picker__from-price {
  font-size: 0.8125rem;
  color: var(--bc-cal-primary);
  font-weight: 500;
}

.bc-accommodation__lsnr-incentive {
  margin-top: 1rem;
  padding: 0.625rem 1rem;
  background: var(--bc-cal-surface);
  border: 1px solid var(--bc-cal-border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: var(--bc-cal-text-muted);
  text-align: center;
}

/* ── Search summary bar ─────────────────────────────────────────── */

.bc-search-summary {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bc-cal-surface);
  border: 1px solid var(--bc-cal-border);
  border-radius: 8px;
  font-size: 0.875rem;
}

.bc-search-summary__hint {
  color: var(--bc-cal-tx-muted);
  font-style: italic;
}

.bc-search-summary__criteria {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.5rem;
  font-weight: 500;
  color: var(--bc-cal-tx-strong);
  margin-bottom: 0.5rem;
}

.bc-search-summary__sep {
  color: var(--bc-cal-tx-muted);
  font-weight: 400;
}

.bc-search-summary__resources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  color: var(--bc-cal-tx-muted);
  font-size: 0.8125rem;
}

.bc-search-summary__resource {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.bc-search-summary__resource-name {
  font-weight: 500;
  color: var(--bc-cal-tx);
}

.bc-search-summary__resource--available .bc-search-summary__status-icon {
  color: var(--bc-cal-available-tx);
}

.bc-search-summary__resource--unavailable .bc-search-summary__status-icon {
  color: var(--bc-cal-error);
}

.bc-search-summary__from-price-inline {
  color: var(--bc-cal-primary);
  font-weight: 500;
}

/* ── Month navigation (#month-nav) ───────────────────────────── */

.bc-calendar__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.bc-calendar__nav-btn {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--bc-cal-border);
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--bc-cal-tx);
  font-family: inherit;
  transition: background 0.1s, border-color 0.1s;
}

.bc-calendar__nav-btn:hover:not(:disabled) {
  background: var(--bc-cal-border-light);
  border-color: var(--bc-cal-border-hover);
}

.bc-calendar__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.bc-calendar__nav-btn:focus-visible {
  outline: 2px solid var(--bc-cal-primary);
  outline-offset: 2px;
}

.bc-calendar__nav-label {
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  flex: 1;
  color: var(--bc-cal-tx-strong);
}
