/* Upcoming widget: the compact list of next-due assignments and events. */

.upcoming-list { display: flex; flex-direction: column; }
.upcoming-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}
.upcoming-item:last-child { border-bottom: none; }
.upcoming-swatch { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.upcoming-title { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upcoming-due { font-family: var(--font-mono); font-size: 0.68rem; color: var(--ink-muted); white-space: nowrap; }
.upcoming-due.overdue { color: var(--danger); font-weight: 500; }
.upcoming-due.due-today { color: var(--warn); font-weight: 500; }
.upcoming-swatch-event { background: var(--accent); }
