/* ============================================
   SEASON 2026 — nav theme override
   Reskins the shared VBA scoring-system nav bar
   (.wl-nav / .wl-nav-*, from style.css) to match
   the main Beith Golf Club site palette.

   Only the header bar is touched here — the report
   tables themselves keep whatever look style.css
   (copied fresh each week) gives them.

   Not overwritten by update_reports_from_output_folder.py
   — safe to hand-edit.
   ============================================ */

.wl-nav {
  position: sticky;
  top: 64px; /* sits just below the site's own 64px header */
  background: var(--green-dark);
  border-bottom: 3px solid var(--gold);
  font-family: var(--font-body);
}
.wl-nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}
.wl-nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
}
.wl-nav-links a:hover,
.wl-nav-links a.current {
  border-bottom-color: var(--gold);
  color: var(--white);
}
.wl-nav-dates {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-body);
}
.wl-nav-dates option {
  color: var(--text-dark);
}
.wl-nav-toggle {
  color: var(--white);
}
@media (max-width: 640px) {
  .wl-nav-links a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}
