.season-dash-page {
  --sd-ink: #12171c;
  --sd-muted: #5c6770;
  --sd-line: #d0d7de;
  --sd-panel: #ffffff;
  --sd-accent: #1f6f8b;
  --sd-field: #eaf2f6;
  padding: 40px 18px 72px;
  background:
    radial-gradient(920px 320px at 8% -10%, rgba(31, 111, 139, 0.12), transparent 60%),
    linear-gradient(180deg, #e6edf2, #eef1f4 42%, #f4f6f8);
  color: var(--sd-ink);
  font-family: "IBM Plex Sans Thai", "Sarabun", "Noto Sans Thai", sans-serif;
  min-height: 70vh;
}
.season-dash-shell { max-width: 1040px; margin: 0 auto; }
.season-dash-eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sd-muted);
}
.season-dash-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.season-dash-head h1 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}
.season-dash-head p { margin: 0; color: var(--sd-muted); line-height: 1.55; max-width: 52ch; }
.season-dash-year-form {
  display: grid;
  gap: 6px;
  min-width: 140px;
}
.season-dash-year-form label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--sd-muted);
}
.season-dash-year-form select {
  appearance: none;
  border: 1px solid var(--sd-line);
  background: var(--sd-panel);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700;
  color: var(--sd-ink);
}
.season-dash-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}
.season-dash-kpis > div {
  background: var(--sd-panel);
  border: 1px solid var(--sd-line);
  border-radius: 14px;
  padding: 12px 14px;
}
.season-dash-kpis span { display: block; color: var(--sd-muted); font-size: .8rem; font-weight: 700; }
.season-dash-kpis strong { display: block; font-size: 1.4rem; margin-top: 4px; }
.season-dash-section { margin-top: 10px; }
.season-dash-section h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}
.season-dash-schemes,
.season-dash-list { display: grid; gap: 12px; }
.season-dash-scheme {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--sd-line);
  border-radius: 14px;
  background: var(--sd-panel);
  text-decoration: none;
  color: inherit;
}
.season-dash-scheme:hover { border-color: rgba(15, 76, 129, .45); }
.season-dash-scheme span { color: var(--sd-muted); font-size: .9rem; }
.season-dash-card {
  background: var(--sd-panel);
  border: 1px solid var(--sd-line);
  border-radius: 16px;
  padding: 16px 18px;
}
.season-dash-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.season-dash-card h3 { margin: 0 0 6px; font-size: 1.12rem; }
.season-dash-card header p { margin: 0; color: var(--sd-muted); font-size: .92rem; line-height: 1.45; }
.season-dash-code {
  margin: 0 0 4px !important;
  font-size: .78rem !important;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sd-accent) !important;
}
.season-dash-status {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  background: var(--sd-field);
  color: var(--sd-muted);
}
.season-dash-status.status-open { background: #e6f6ec; color: #1c6b3a; }
.season-dash-status.status-in_progress { background: #fff3df; color: #9a5b00; }
.season-dash-status.status-completed { background: #e8eef8; color: #254a7a; }
.season-dash-status.status-closed { background: #f1f3f6; color: #4d5b6d; }
.season-dash-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 12px 0 10px;
  color: var(--sd-muted);
  font-size: .88rem;
  font-weight: 600;
}
.season-dash-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.season-dash-links a {
  color: var(--sd-accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 76, 129, .35);
}
.season-dash-empty,
.season-dash-muted {
  color: var(--sd-muted);
}
.season-dash-empty {
  padding: 28px;
  border: 1px dashed var(--sd-line);
  border-radius: 16px;
  text-align: center;
  background: rgba(255,255,255,.65);
}
@media (max-width: 720px) {
  .season-dash-head { display: grid; }
  .season-dash-card header { display: grid; gap: 10px; }
}
