/* ── Shared status badges ─────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
}
.badge-completed { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.badge-upcoming  { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }
.badge-active    { background: #e0f2fe; color: #0369a1; border: 1px solid #7dd3fc; }
.badge-missed    { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.badge-pending   { background: #fef9c3; color: #854d0e; border: 1px solid #fde047; }
.badge-unset     { background: #fef9c3; color: #854d0e; border: 1px solid #fde047; }
.badge-rejected  { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.badge-accepted  { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.badge-warning   { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.badge-drafted   { background: #f3f4f6; color: #374151; border: 1px solid #d1d5db; }

/* Variant: small icon-prefix process badge */
.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
}
