/* ═══════════════════════════════════════════════════════════
   BOOKING GRID — Premium Dark Theme Overrides
   Scoped to .route--oc-frontend-court-grid
   Design: "Traffic Light Semantic" palette
   ═══════════════════════════════════════════════════════════ */

/* ── Filter bar inputs — unified dark styling ── */
.route--oc-frontend-court-grid .oc-filter-bar__date-input,
.route--oc-frontend-court-grid .oc-filter-bar__select {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(71, 85, 105, 0.5);
  color: #e2e8f0;
  color-scheme: dark;
  border-radius: 6px;
  height: 38px;
  font-size: 13px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.route--oc-frontend-court-grid .oc-filter-bar__date-input:focus,
.route--oc-frontend-court-grid .oc-filter-bar__select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
  outline: none;
}

/* ── Custom Dropdown Component ── */
.oc-custom-dd {
  position: relative;
  flex: 1;
  min-width: 160px;
}

.oc-custom-dd__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  text-align: left;
  gap: 8px;
}

.oc-custom-dd__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.oc-custom-dd__arrow {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.2s;
}

.oc-custom-dd__arrow--open {
  transform: rotate(180deg);
}

.oc-custom-dd__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #1e293b;
  border: 1px solid rgba(71, 85, 105, 0.6);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  max-height: 240px;
  overflow-y: auto;
  padding: 4px 0;
  animation: oc-dd-fadein 0.15s ease-out;
}

@keyframes oc-dd-fadein {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.oc-custom-dd__item {
  padding: 8px 14px;
  font-size: 13px;
  color: #cbd5e1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.oc-custom-dd__item:hover {
  background: rgba(71, 85, 105, 0.4);
  color: #f1f5f9;
}

.oc-custom-dd__item--active {
  background: var(--oc-primary-700, #4338ca);
  color: #fff;
  font-weight: 600;
}

.oc-custom-dd__item--active:hover {
  background: var(--oc-primary-600, #4f46e5);
}

/* Scrollbar for dropdown list */
.oc-custom-dd__list::-webkit-scrollbar {
  width: 5px;
}

.oc-custom-dd__list::-webkit-scrollbar-track {
  background: transparent;
}

.oc-custom-dd__list::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.4);
  border-radius: 4px;
}

/* ── Custom Date Picker ── */
.oc-custom-dd--date {
  min-width: 140px;
}

.oc-datepicker {
  width: 280px;
  padding: 12px !important;
  max-height: none !important;
  overflow-y: visible !important;
}

.oc-datepicker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.oc-datepicker__month {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
}

.oc-datepicker__nav {
  background: none;
  border: 1px solid rgba(71, 85, 105, 0.4);
  color: #94a3b8;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.oc-datepicker__nav:hover {
  background: rgba(71, 85, 105, 0.4);
  color: #e2e8f0;
  border-color: rgba(100, 116, 139, 0.6);
}

.oc-datepicker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 4px;
}

.oc-datepicker__weekdays span {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  padding: 4px 0;
  text-transform: uppercase;
}

.oc-datepicker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.oc-datepicker__empty {
  width: 36px;
  height: 36px;
}

.oc-datepicker__day {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  color: #cbd5e1;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-datepicker__day:hover {
  background: rgba(71, 85, 105, 0.5);
  color: #f1f5f9;
}

.oc-datepicker__day--today {
  border: 1px solid #4f46e5;
  color: #818cf8;
  font-weight: 700;
}

.oc-datepicker__day--selected {
  background: var(--oc-primary-600, #4f46e5) !important;
  color: #fff !important;
  font-weight: 700;
}

.oc-datepicker__footer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
  text-align: center;
}

.oc-datepicker__today {
  background: none;
  border: none;
  color: #818cf8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 16px;
  border-radius: 6px;
  transition: all 0.15s;
}

.oc-datepicker__today:hover {
  background: rgba(99, 102, 241, 0.15);
}

/* ── Scroll container — match filter bar slate ── */
.route--oc-frontend-court-grid .oc-timeline__scroll {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}

.route--oc-frontend-court-grid .oc-timeline__top-scroll {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.06);
}

/* ── Court cell (left sticky column) ── */
.route--oc-frontend-court-grid .oc-timeline__court-cell {
  background: #1a2536;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.route--oc-frontend-court-grid .oc-timeline__court-name {
  color: #E2E8F0;
  letter-spacing: 0.01em;
}

.route--oc-frontend-court-grid .oc-timeline__court-price {
  color: #5EEAD4;
  font-weight: 600;
}

/* ── Headers — subtle sophistication ── */
.route--oc-frontend-court-grid .oc-timeline__court-header {
  background: #1a2536;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
}

.route--oc-frontend-court-grid .oc-timeline__time-header {
  background: #1a2536;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  color: #94A3B8;
}

/* ── Slot cells ── */
.route--oc-frontend-court-grid .oc-timeline__slot-cell {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(255, 255, 255, 0.03);
  padding: 2px;
}

/* ── Footer ── */
.route--oc-frontend-court-grid .oc-timeline__tfoot .oc-timeline__court-header {
  background: #1a2536;
}

/* ═══════════════════════════════════════════════════════════
   DEMAND LEVEL — Refined Gradient Headers
   Trầm hơn, professional, authoritative
   ═══════════════════════════════════════════════════════════ */
.route--oc-frontend-court-grid .oc-timeline__time-header.oc-timeline__time-header--demand-low {
  background: linear-gradient(180deg, #1E6B52 0%, #155E47 100%);
  border-bottom-color: #0F4F3A;
  border-left-color: #0F4F3A;
  color: #A7F3D0;
}

.route--oc-frontend-court-grid .oc-timeline__time-header.oc-timeline__time-header--demand-normal {
  background: linear-gradient(180deg, #1E3A8A 0%, #1E3380 100%);
  border-bottom-color: #172554;
  border-left-color: #172554;
  color: #93A8D0;
}

.route--oc-frontend-court-grid .oc-timeline__time-header.oc-timeline__time-header--demand-high {
  background: linear-gradient(180deg, #B45309 0%, #92400E 100%);
  border-bottom-color: #78350F;
  border-left-color: #78350F;
  color: #FDE68A;
}

.route--oc-frontend-court-grid .oc-timeline__time-header.oc-timeline__time-header--demand-peak {
  background: linear-gradient(180deg, #B91C1C 0%, #991B1B 100%);
  border-bottom-color: #7F1D1D;
  border-left-color: #7F1D1D;
  color: #FECACA;
}

/* ═══════════════════════════════════════════════════════════
   SLOT STATES — Traffic Light Semantic Palette
   🟢 Green = bookable | 🔵 Blue = interactive
   🟠 Warm = booked    | ⬛ Gray = disabled
   ═══════════════════════════════════════════════════════════ */

/* ── Base slot ── */
.route--oc-frontend-court-grid .oc-tslot {
  position: relative;
  border-radius: 4px;
  transition: box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

/* ── 🟢 Available / Normal — Muted Emerald (bookable, easy on eyes) ── */
.route--oc-frontend-court-grid .oc-tslot--available,
.route--oc-frontend-court-grid .oc-tslot--normal {
  background: rgba(16, 185, 129, 0.04);
  border-top: 1px solid rgba(16, 185, 129, 0.08);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
  border-left: none;
  border-right: none;
  color: #64748B;
  border-radius: 4px;
}

.route--oc-frontend-court-grid .oc-tslot--available .oc-tslot__price,
.route--oc-frontend-court-grid .oc-tslot--normal .oc-tslot__price {
  color: #7C8DA2;
}

.route--oc-frontend-court-grid .oc-tslot--available:hover,
.route--oc-frontend-court-grid .oc-tslot--normal:hover {
  background: rgba(16, 185, 129, 0.10);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.08);
}

/* ── 🌟 Special — Amber Star (bookable with special pricing) ── */
.route--oc-frontend-court-grid .oc-tslot--special {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(251, 191, 36, 0.18) 100%);
  border-top: 1px solid rgba(251, 191, 36, 0.25);
  border-bottom: 1px solid rgba(251, 191, 36, 0.25);
  border-left: none;
  border-right: none;
  color: #FDE68A;
  cursor: pointer;
}

.route--oc-frontend-court-grid .oc-tslot--special:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.14) 0%, rgba(251, 191, 36, 0.28) 100%);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.12);
}

.route--oc-frontend-court-grid .oc-tslot--special .oc-tslot__price {
  color: #FCD34D;
  font-weight: 700;
}

/* ── 🔵 Selected — Skin Primary (in cart) ── */
.route--oc-frontend-court-grid .oc-tslot--selected {
  background: linear-gradient(135deg, var(--oc-primary-700) 0%, var(--oc-primary-600) 100%) !important;
  border-top: 1px solid var(--oc-primary-400) !important;
  border-bottom: 1px solid var(--oc-primary-400) !important;
  border-left: none !important;
  border-right: none !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.route--oc-frontend-court-grid .oc-tslot--selected .oc-tslot__price {
  color: rgba(255, 255, 255, 0.95);
}

/* ── 🔴 Fixed — Deep Crimson (permanently reserved) ── */
.route--oc-frontend-court-grid .oc-tslot--fixed {
  background: linear-gradient(135deg, #7F1D1D 0%, #991B1B 100%);
  border-left: 3px solid #5C1414;
  border-top: 1px solid rgba(153, 27, 27, 0.5);
  border-bottom: 1px solid rgba(153, 27, 27, 0.5);
  border-right: none;
  color: #FECACA;
}

.route--oc-frontend-court-grid .oc-tslot--fixed:hover {
  box-shadow: 0 0 12px rgba(153, 27, 27, 0.2);
}

.route--oc-frontend-court-grid .oc-tslot--fixed .oc-tslot__label {
  color: #FEE2E2;
  font-weight: 700;
}

.route--oc-frontend-court-grid .oc-tslot--fixed .oc-tslot__customer {
  color: rgba(254, 226, 226, 0.85);
}

/* ── 🌸 Serial — Rose Magenta (recurring booking) ── */
.route--oc-frontend-court-grid .oc-tslot--serial {
  background: linear-gradient(135deg, #831843 0%, #9D174D 100%);
  border-left: 3px solid #6B1038;
  border-top: 1px solid rgba(157, 23, 77, 0.5);
  border-bottom: 1px solid rgba(157, 23, 77, 0.5);
  border-right: none;
  color: #FBD0E0;
}

.route--oc-frontend-court-grid .oc-tslot--serial:hover {
  box-shadow: 0 0 12px rgba(157, 23, 77, 0.2);
}

.route--oc-frontend-court-grid .oc-tslot--serial .oc-tslot__label {
  color: #FECDD3;
  font-weight: 700;
}

.route--oc-frontend-court-grid .oc-tslot--serial .oc-tslot__customer {
  color: rgba(254, 205, 211, 0.88);
}

/* ── 💜 Walk-in — Violet (casual visitor) ── */
.route--oc-frontend-court-grid .oc-tslot--walkin {
  background: linear-gradient(135deg, #5B21B6 0%, #6D28D9 100%);
  border-left: 3px solid #4C1D95;
  border-top: 1px solid rgba(109, 40, 217, 0.45);
  border-bottom: 1px solid rgba(109, 40, 217, 0.45);
  border-right: none;
  color: #EDE9FE;
}

.route--oc-frontend-court-grid .oc-tslot--walkin:hover {
  box-shadow: 0 0 12px rgba(109, 40, 217, 0.18);
}

.route--oc-frontend-court-grid .oc-tslot--walkin .oc-tslot__label {
  color: #DDD6FE;
  font-style: italic;
}

.route--oc-frontend-court-grid .oc-tslot--walkin .oc-tslot__customer {
  color: rgba(221, 214, 254, 0.88);
}

/* ── 🥇 Membership — Warm Gold (premium member) ── */
.route--oc-frontend-court-grid .oc-tslot--membership {
  background: linear-gradient(135deg, #92400E 0%, #B45309 100%);
  border-left: 3px solid #78350F;
  border-top: 1px solid rgba(180, 83, 9, 0.5);
  border-bottom: 1px solid rgba(180, 83, 9, 0.5);
  border-right: none;
  color: #FEF3C7;
}

.route--oc-frontend-court-grid .oc-tslot--membership:hover {
  box-shadow: 0 0 12px rgba(180, 83, 9, 0.18);
}

.route--oc-frontend-court-grid .oc-tslot--membership .oc-tslot__label {
  color: #FDE68A;
  font-weight: 700;
}

.route--oc-frontend-court-grid .oc-tslot--membership .oc-tslot__customer {
  color: rgba(253, 230, 138, 0.88);
}

/* ── 🟠 Booked — Burnt Orange (generic occupied) ── */
.route--oc-frontend-court-grid .oc-tslot--booked {
  background: linear-gradient(135deg, #9A3412 0%, #C2410C 100%);
  border-top: 1px solid rgba(194, 65, 12, 0.5);
  border-bottom: 1px solid rgba(194, 65, 12, 0.5);
  border-left: none;
  border-right: none;
  color: #FED7AA;
}

.route--oc-frontend-court-grid .oc-tslot--booked:hover {
  box-shadow: 0 0 12px rgba(194, 65, 12, 0.18);
}

/* ── 💎 Open Slot — Deep Indigo (community / join) ── */
.route--oc-frontend-court-grid .oc-tslot--open {
  background: linear-gradient(135deg, #312E81 0%, #3730A3 100%);
  border-top: 1px solid rgba(55, 48, 163, 0.5);
  border-bottom: 1px solid rgba(55, 48, 163, 0.5);
  border-left: 3px solid #272574;
  border-right: none;
  color: #C7D2FE;
  cursor: pointer;
}

.route--oc-frontend-court-grid .oc-tslot--open:hover {
  box-shadow: 0 0 14px rgba(55, 48, 163, 0.25);
}

.route--oc-frontend-court-grid .oc-tslot--open .oc-tslot__label {
  color: #E0E7FF;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
}

/* ── ⬛ Past — Slate Hatched (expired, non-interactive) ── */
.route--oc-frontend-court-grid .oc-tslot--past {
  background: repeating-linear-gradient(
    -45deg,
    rgba(30, 41, 59, 0.6),
    rgba(30, 41, 59, 0.6) 4px,
    rgba(15, 23, 42, 0.6) 4px,
    rgba(15, 23, 42, 0.6) 8px
  );
  border-top: 1px dashed rgba(71, 85, 105, 0.3);
  border-bottom: 1px dashed rgba(71, 85, 105, 0.3);
  border-left: none;
  border-right: none;
  color: #64748B;
  opacity: 0.5;
  cursor: not-allowed;
}

.route--oc-frontend-court-grid .oc-tslot--past .oc-tslot__price {
  color: #64748B;
  text-decoration: line-through;
}

/* ── ⬛ Day Off — Dark Hatched (closed) ── */
.route--oc-frontend-court-grid .oc-tslot--dayoff {
  background: repeating-linear-gradient(
    -45deg,
    #1a2536,
    #1a2536 4px,
    #151e2e 4px,
    #151e2e 8px
  );
  border-top: 1px dashed rgba(100, 116, 139, 0.25);
  border-bottom: 1px dashed rgba(100, 116, 139, 0.25);
  border-left: none;
  border-right: none;
  color: #475569;
  opacity: 0.55;
  cursor: not-allowed;
}

.route--oc-frontend-court-grid .oc-tslot--dayoff .oc-tslot__label {
  color: #475569;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   SLOT INNER ELEMENTS
   ═══════════════════════════════════════════════════════════ */
.route--oc-frontend-court-grid .oc-tslot__price {
  font-weight: 700;
  font-size: 12px;
}

.route--oc-frontend-court-grid .oc-tslot__type-icon {
  position: absolute !important;
  top: 1px !important;
  left: 2px !important;
  width: 16px !important;
  height: 16px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  font-size: 10px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
  opacity: 1 !important;
  z-index: 5 !important;
  color: #0f172a !important;
  filter: none !important;
}

.route--oc-frontend-court-grid .oc-tslot__check {
  position: absolute;
  top: 2px;
  right: 3px;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  background: #059669;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

/* ═══════════════════════════════════════════════════════════
   LEGEND SWATCHES — Match semantic palette
   ═══════════════════════════════════════════════════════════ */

/* Demand */
.route--oc-frontend-court-grid .oc-legend-swatch--low {
  background: linear-gradient(135deg, #1E6B52, #155E47);
}

.route--oc-frontend-court-grid .oc-legend-swatch--normal {
  background: linear-gradient(135deg, #1D4ED8, #1E40AF);
}

.route--oc-frontend-court-grid .oc-legend-swatch--high {
  background: linear-gradient(135deg, #B45309, #92400E);
}

.route--oc-frontend-court-grid .oc-legend-swatch--peak {
  background: linear-gradient(135deg, #B91C1C, #991B1B);
}

/* Slots */
.route--oc-frontend-court-grid .oc-legend-swatch--available {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.route--oc-frontend-court-grid .oc-legend-swatch--special {
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.route--oc-frontend-court-grid .oc-legend-swatch--selected {
  background: linear-gradient(135deg, #1D4ED8, #2563EB);
}

.route--oc-frontend-court-grid .oc-legend-swatch--fixed {
  background: linear-gradient(135deg, #7F1D1D, #991B1B);
  border-left: 3px solid #5C1414;
}

.route--oc-frontend-court-grid .oc-legend-swatch--serial {
  background: linear-gradient(135deg, #831843, #9D174D);
  border-left: 3px solid #6B1038;
}

.route--oc-frontend-court-grid .oc-legend-swatch--walkin {
  background: linear-gradient(135deg, #5B21B6, #6D28D9);
  border-left: 3px solid #4C1D95;
}

.route--oc-frontend-court-grid .oc-legend-swatch--membership {
  background: linear-gradient(135deg, #92400E, #B45309);
  border-left: 3px solid #78350F;
}

.route--oc-frontend-court-grid .oc-legend-swatch--past {
  background: repeating-linear-gradient(
    -45deg,
    rgba(30, 41, 59, 0.6),
    rgba(30, 41, 59, 0.6) 3px,
    rgba(15, 23, 42, 0.6) 3px,
    rgba(15, 23, 42, 0.6) 6px
  );
  border: 1px dashed rgba(71, 85, 105, 0.3);
}

.route--oc-frontend-court-grid .oc-legend-swatch--dayoff {
  background: #1a2536;
  border: 1px dashed rgba(100, 116, 139, 0.25);
}

/* Legend text — hardcoded light for dark legend bar */
.route--oc-frontend-court-grid .oc-timeline__legend-group {
  color: #CBD5E1;
}

.route--oc-frontend-court-grid .oc-timeline__legend-row {
  color: #CBD5E1;
}

.route--oc-frontend-court-grid .oc-timeline__legend {
  color: #CBD5E1;
}

.route--oc-frontend-court-grid .oc-legend-item {
  color: #CBD5E1;
}

.route--oc-frontend-court-grid .oc-legend-label {
  color: #E2E8F0;
  font-weight: 700;
}

.route--oc-frontend-court-grid .oc-legend-swatch--unavailable {
  background: #1a2536;
  border: 1px solid rgba(100, 116, 139, 0.3);
  position: relative;
}

.route--oc-frontend-court-grid .oc-legend-swatch--unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  right: 2px;
  height: 1px;
  background: rgba(148, 163, 184, 0.5);
  transform: rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   FILTER BAR — Hardcoded Indigo for Non-Selected Controls
   Only .oc-pill--active follows skin (it IS the selection)
   ═══════════════════════════════════════════════════════════ */

/* Focus borders — hardcoded indigo */
.route--oc-frontend-court-grid .oc-filter-bar__select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.route--oc-frontend-court-grid .oc-filter-bar__date-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

/* Date arrow hover — hardcoded */
.route--oc-frontend-court-grid .oc-filter-bar__date-arrow:hover {
  border-color: #4f46e5;
}

/* Pill hover — hardcoded indigo (not a selection) */
.route--oc-frontend-court-grid .oc-pill:hover {
  border-color: #4f46e5;
}

/* Legend selected swatch — hardcoded indigo (descriptive, not interactive) */
.route--oc-frontend-court-grid .oc-legend-swatch--selected {
  background: linear-gradient(135deg, #4338ca, #4f46e5);
}
