﻿}


/* ---- Approval progress in hero ---- */
.hero-status-cell-progress { grid-column: span 2; }
.approval-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}
.approval-bar {
  position: relative;
  height: 8px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.approval-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--status-green-ink) 0%, var(--status-green-ink) var(--approved-pct, 0%), var(--status-amber-ink) var(--approved-pct, 0%), var(--status-amber-ink) var(--in-review-end, 0%), transparent var(--in-review-end, 0%));
  transition: width 0.4s;
}
.approval-counts {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--ink-muted);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.approval-counts .ac-num {
  font-weight: 600;
  color: var(--ink);
}
.approval-counts .ac-segment {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.approval-counts .ac-dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
}
.ac-dot-approved   { background: #2F5233; }
.ac-dot-review     { background: #8E5C0E; }
.ac-dot-rework     { background: #8B2635; }
.ac-dot-not        { background: #DDD5C5; }

/* ---- Filter helpers row ---- */
.filter-row-helpers {
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line-soft);
  margin-bottom: 4px;
}
.filter-search {
  flex: 1;
  min-width: 200px;
  font-family: inherit;
  font-size: 13px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 0.12s;
}
.filter-search:focus { border-color: var(--ink); box-shadow: var(--focus-ring); }
.filter-search:focus-visible { box-shadow: var(--focus-ring); }
.filter-search::placeholder { color: var(--ink-soft); font-style: italic; }

/* Search highlight: graying out non-matching */
body.has-search-active .program:not(.search-match) { display: none; }


/* ---- Month sidebar (right side, sticky) ---- */
.month-nav {
  position: fixed;
  right: 16px;
  top: 220px;
  width: 130px;
  z-index: 30;
  background: rgba(253, 251, 246, 0.95);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 10px 10px;
  box-shadow: 0 2px 12px rgba(31,29,26,0.04);
  backdrop-filter: blur(8px);
  max-height: calc(100vh - 240px);
  overflow-y: auto;
  font-size: 12px;
}
.month-nav-header {
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-soft);
}
.month-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.month-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ink-muted);
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
  font-size: 11.5px;
  white-space: nowrap;
}
.month-nav-link:hover { background: var(--bg); color: var(--ink); }
.month-nav-link.is-current { background: var(--ink); color: var(--bg); }
.month-nav-link.is-empty { opacity: 0.5; font-style: italic; }
.month-nav-count {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  opacity: 0.7;
  margin-left: 6px;
}

/* Hide sidebar on narrow screens */
@media (max-width: 1480px) {
  .month-nav { display: none; }
}

