/* Overview panel: the Open / Due this week / Overdue / Completed stat list. */

.stats { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat dt { font-size: 0.82rem; color: var(--ink-muted); }
.stat dd { margin: 0; font-family: var(--font-mono); font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.stat.warn-stat dd { color: var(--danger); }
