/* =========================================
   SIDEBAR
   See docs/style-guide.html#sidebar for canonical reference.
   Season-scoped only; the league-scoped sidebar is removed.
   ========================================= */

.sidebar {
  width: var(--sidebar-w);
  flex: none;
  padding: 1.5rem 0.75rem;
  border-right: 1px solid var(--line);
  background: var(--bg);
  display: flex; flex-direction: column;
}

/* "LEAGUE CENTER" section header */
.sidebar-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 12px 8px;
  border-bottom: 1px solid var(--line);
  margin: 0 0 8px;
}

.sidebar-link {
  display: block;
  padding: 8px 14px;
  margin: 2px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: background-color 0.15s;
}
.sidebar-link:hover { background: var(--bg-2); }
.sidebar-link.is-active,
.sidebar-link.active { background: var(--gold); color: var(--ink); }

/* Empty-state stub when no @season is in scope. */
.sidebar-empty {
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
  background: var(--surface-2);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  color: var(--ink-3);
  font-size: 0.92rem;
  line-height: 1.4;
}
