/* CRM-specific: clients, grid, payments, messages */

.client-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.client-card:active { border-color: var(--gold-border); }
.client-card.debt { border-color: rgba(248, 113, 113, 0.35); }
.client-card.low { border-color: rgba(251, 191, 36, 0.35); }

.client-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.client-info { flex: 1; min-width: 0; }
.client-name { font-weight: 700; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.client-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

.balance-pill {
  text-align: center;
  flex-shrink: 0;
}
.balance-pill .num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.balance-pill .lbl { font-size: 9px; color: var(--muted); text-transform: uppercase; }
.balance-pill.ok .num { color: var(--success); }
.balance-pill.warn .num { color: var(--warning); }
.balance-pill.no .num { color: var(--danger); }

/* Attendance grid (Google Sheets style) */
.grid-wrap {
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px;
  -webkit-overflow-scrolling: touch;
}
.attendance-grid {
  border-collapse: collapse;
  font-size: 11px;
  min-width: 100%;
}
.attendance-grid th, .attendance-grid td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 4px;
  text-align: center;
  white-space: nowrap;
}
.attendance-grid th {
  background: rgba(78, 205, 196, 0.1);
  color: var(--gold);
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 2;
}
.attendance-grid th.today { background: rgba(255, 107, 107, 0.2); }
.attendance-grid td.name-col {
  text-align: left;
  font-weight: 600;
  max-width: 84px;
  min-width: 84px;
  width: 84px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: sticky;
  left: 0;
  background: var(--bg-deep);
  z-index: 3;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.25);
}
.attendance-grid th.name-col {
  position: sticky;
  left: 0;
  z-index: 4;
  min-width: 84px;
  width: 84px;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.25);
}
.attendance-grid th.balance-col,
.attendance-grid td.balance-col {
  font-weight: 700;
  font-size: 10px;
  min-width: 30px;
  width: 30px;
  max-width: 30px;
  padding: 4px 2px;
  position: sticky;
  left: 84px;
  background: var(--bg-deep);
  z-index: 3;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2);
}
.attendance-grid th.chips-col,
.attendance-grid td.chips-col {
  min-width: 32px;
  width: 32px;
  max-width: 32px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  padding: 4px 2px;
  position: sticky;
  left: 114px;
  background: var(--bg-deep);
  z-index: 3;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2);
}
.attendance-grid td.marked {
  background: rgba(110, 231, 183, 0.25);
  color: var(--success);
  font-weight: 800;
  cursor: pointer;
}
.attendance-grid td.marked-debt {
  background: rgba(248, 113, 113, 0.3);
  color: var(--danger);
  font-weight: 800;
  cursor: pointer;
}
.attendance-grid td.empty-cell {
  cursor: pointer;
  color: var(--muted);
}
.attendance-grid td.empty-cell:hover { background: var(--gold-soft); }
.attendance-grid tr:nth-child(even) td.name-col,
.attendance-grid tr:nth-child(even) td.balance-col,
.attendance-grid tr:nth-child(even) td.chips-col { background: rgba(10, 22, 40, 0.98); }

.month-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}
.month-nav button {
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  border-radius: 10px;
  padding: 8px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.month-nav .month-label { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; }

/* Social action buttons */
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.social-btn.tg { border-color: rgba(0, 136, 204, 0.4); color: #54a9eb; }
.social-btn.viber { border-color: rgba(124, 92, 255, 0.4); color: #9b7bff; }
.social-btn.ig { border-color: rgba(225, 48, 108, 0.4); color: #e1306c; }
.social-btn.copy { border-color: var(--gold-border); color: var(--gold); }
.social-actions.compact { margin-top: 6px; gap: 4px; }
.social-actions.compact .social-btn { padding: 6px 10px; font-size: 10px; }

.pin-badge { font-size: 12px; }
.loc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--c) 20%, transparent);
  color: var(--c);
  margin-bottom: 4px;
}
.ws-loc { font-size: 9px; color: var(--muted); margin: 2px 0; }

.template-list { display: flex; flex-direction: column; gap: 8px; }
.template-item {
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  cursor: pointer;
}
.template-item:active { border-color: var(--gold-border); }
.template-item .tpl-name { font-weight: 700; font-size: 14px; }
.template-item .tpl-preview { font-size: 12px; color: var(--muted); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.template-item .tpl-cat { font-size: 10px; color: var(--gold); text-transform: uppercase; margin-top: 4px; }

.payment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.payment-item .pay-info { flex: 1; }
.payment-item .pay-name { font-weight: 700; font-size: 14px; }
.payment-item .pay-meta { font-size: 12px; color: var(--muted); }
.payment-item .pay-amount { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold); text-align: right; }

.chips-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}
.chips-counter button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-border);
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}
.chips-counter .chips-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 60px;
  text-align: center;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.detail-header .back-btn {
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.fab {
  position: fixed;
  bottom: calc(var(--nav-h) + var(--safe-b) + 20px);
  right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #2a9d8f);
  color: #061018;
  border: none;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(78, 205, 196, 0.35);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-list { display: flex; flex-direction: column; gap: 6px; }
.alert-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
}

.list-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.list-tab {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card);
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.list-tab.active {
  border-color: var(--gold-border);
  background: var(--gold-soft);
  color: var(--gold);
}
.list-tab.archive-tab {
  border-color: rgba(248, 113, 113, 0.3);
  color: var(--danger);
}
.list-tab.archive-tab.active {
  background: rgba(248, 113, 113, 0.15);
}

/* Today screen */
.today-slot {
  display: flex;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 10px;
}
.today-slot.free { opacity: 0.75; }
.slot-time {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 52px;
}
.today-clients { margin: 8px 0; }
.today-client {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
}
.today-client.marked .tc-mark { color: var(--success); font-weight: 800; }
.today-client.marked-debt .tc-mark { color: var(--danger); font-weight: 800; }
.tc-name { flex: 1; }
.today-mark-btn { margin-top: 8px; width: 100%; }

/* Week schedule (admin) */
.week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  overflow-x: auto;
}
.week-col { min-width: 90px; }
.week-day {
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  color: var(--gold);
  padding: 8px 4px;
  background: var(--gold-soft);
  border-radius: 10px;
  margin-bottom: 6px;
}
.week-slot {
  border: 1px solid;
  border-radius: 10px;
  padding: 8px 6px;
  margin-bottom: 6px;
  font-size: 10px;
  cursor: pointer;
}
.ws-time { font-weight: 800; font-size: 11px; }
.ws-coach { font-weight: 700; margin: 2px 0; }
.ws-clients { color: var(--muted); line-height: 1.3; }

.coach-legend-wrap { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.coach-legend {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--c) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 50%, transparent);
  color: var(--c);
}
.coach-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.schedule-row {
  display: grid;
  grid-template-columns: 36px 52px 1fr 36px;
  gap: 8px;
  align-items: center;
  padding: 12px;
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 8px;
  font-size: 13px;
}
.sr-day { font-weight: 800; color: var(--gold); }
.sr-time { font-family: var(--font-display); font-weight: 700; }

.coach-load-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.coach-load-name { font-weight: 700; min-width: 80px; }

.reminder-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.reminder-row .client-name { font-weight: 700; font-size: 14px; }

.check-list { max-height: 180px; overflow-y: auto; }
.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .week-grid { grid-template-columns: repeat(7, minmax(72px, 1fr)); }
}

.client-card.archived {
  opacity: 0.7;
  border-style: dashed;
}
.coach-tag {
  font-size: 10px;
  color: var(--gold);
  margin-top: 2px;
}

/* Finance / P&L */
.finance-nav { margin-bottom: 14px; }
.stat-box.highlight-profit .val { color: var(--success); }

.finance-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.finance-line:last-child { border-bottom: none; }
.finance-total { font-weight: 800; margin-top: 4px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.fin-minus { color: var(--danger); font-weight: 700; }
.fin-plus { color: var(--gold); font-weight: 700; }
.fin-coach-pay { font-weight: 800; color: var(--gold); white-space: nowrap; }
.finance-coach-row { align-items: center; }
.finance-coach-info { flex: 1; min-width: 0; }

.expense-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.expense-name { flex: 1; font-size: 14px; font-weight: 600; }
.expense-amount {
  width: 88px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  text-align: right;
}
.expense-currency { color: var(--muted); font-size: 13px; }

.finance-result-line { font-size: 14px; }
.finance-net {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--success);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--gold-border);
}
.finance-net span:last-child { color: var(--success); }

.pay-preview-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  font-size: 13px;
}
.pay-preview-net { margin-top: 6px; color: var(--gold); }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.coach-cred-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}
.coach-cred-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.coach-cred-name { cursor: pointer; flex: 1; }
.cred-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
}
.cred-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  min-width: 52px;
}
.cred-val {
  flex: 1;
  font-family: ui-monospace, monospace;
  font-size: 14px;
  color: var(--gold);
  word-break: break-all;
}
.cred-copy, .cred-reset { flex-shrink: 0; padding: 6px 10px; font-size: 11px; }
.coach-created-creds {
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 12px;
}

.admin-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  flex: 1;
}
.admin-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}
.cred-admin-row {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.digest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.digest-stat {
  text-align: center;
  padding: 12px 6px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.digest-stat.warn {
  border-color: rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.08);
}
.digest-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.digest-stat.warn .digest-val { color: var(--danger); }
.digest-lbl {
  font-size: 9px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.archive-suggest-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.archive-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  cursor: pointer;
  font-size: 13px;
}
.archive-check input {
  margin-top: 4px;
  accent-color: var(--gold);
}

.location-edit-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  margin-bottom: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.loc-preview {
  width: 56px;
  min-height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.loc-fields { flex: 1; min-width: 0; }
.loc-color-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.loc-color-native {
  width: 44px;
  height: 44px;
  padding: 2px;
  border: none;
  border-radius: 10px;
  background: none;
  cursor: pointer;
}
.loc-color-input {
  flex: 1;
  font-family: ui-monospace, monospace;
}
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
}
.color-swatch.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px var(--gold);
}

.coach-rates-block {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.coach-rates-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.coach-rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.coach-rates-grid label { font-size: 10px; }
.coach-rates-grid input {
  padding: 8px;
  font-size: 14px;
}
.coach-rates-save { width: 100%; }

/* Finance chart — 12 months */
.finance-chart-card { margin-bottom: 14px; }
.finance-chart-card h3 { margin-bottom: 10px; }
.chart-legend {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.chart-legend span { display: flex; align-items: center; gap: 6px; }
.chart-legend .leg {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.chart-legend .leg.school { background: rgba(78, 205, 196, 0.55); }
.chart-legend .leg.profit { background: var(--gold); }

.finance-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 160px;
  padding: 8px 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.chart-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
.chart-dual {
  width: 100%;
  max-width: 32px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
}
.chart-bar-wrap {
  flex: 1;
  max-width: 14px;
  display: flex;
  align-items: flex-end;
  min-height: 4px;
}
.chart-bar-wrap .chart-bar {
  width: 100%;
  height: 100%;
  border-radius: 4px 4px 0 0;
}
.chart-bar-school {
  background: rgba(78, 205, 196, 0.5);
  border: 1px solid rgba(78, 205, 196, 0.65);
}
.chart-bar-profit {
  background: linear-gradient(180deg, var(--gold), #2a9d8f);
}
.chart-bar-profit.negative {
  background: rgba(248, 113, 113, 0.75);
}
.chart-val {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.chart-val.neg { color: var(--danger); }
.chart-lbl {
  font-size: 9px;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}
.chart-hint {
  font-size: 11px;
  margin: 10px 0 0;
  text-align: center;
}

/* Journal — planned, chips, weekdays */
.grid-hint { font-size: 12px; margin: 0 0 10px; }
.btn-gold {
  background: linear-gradient(135deg, #ffd93d, #e6a800);
  color: #1a1200;
  border: none;
  font-weight: 700;
}
.btn-gold.active { box-shadow: 0 0 0 2px var(--gold); }
.attendance-grid .dow-row th {
  font-size: 9px;
  color: var(--muted);
  font-weight: 600;
  padding: 2px 0 6px;
}
.attendance-grid .chips-col {
  color: var(--gold);
}
.opl-badge {
  font-size: 10px;
  padding: 2px 4px;
  min-width: 0;
  display: inline-block;
}
.planned-cell {
  color: var(--gold);
  font-weight: 800;
  cursor: pointer;
}
.lane-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lane-btn {
  flex: 1;
  min-width: 70px;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid var(--gold-border);
  background: rgba(0,0,0,0.2);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.lane-btn.active {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold);
}
.chip-pools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.chip-pool-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--pool, var(--gold));
  border-radius: 14px;
  padding: 12px;
}
.chip-pool-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
}
.week-slot-window {
  background: linear-gradient(135deg, rgba(255,217,61,0.25), rgba(230,168,0,0.12)) !important;
  border-color: rgba(255,217,61,0.55) !important;
  box-shadow: inset 0 0 12px rgba(255,217,61,0.15);
}
.window-slot {
  background: linear-gradient(135deg, rgba(255,217,61,0.12), rgba(10,22,40,0.9));
  border: 1px solid rgba(255,217,61,0.35);
}
.today-client.planned { border-left: 3px solid var(--gold); }
.grid-coach-chips { margin-bottom: 8px; font-size: 13px; }
.group-members { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
