/* ── Badges ── */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 9999px;
}

.badge-primary {
	background: var(--primary-light);
	color: var(--primary);
}

.badge-accent {
	background: var(--accent-light);
	color: var(--accent);
}

.badge-success {
	background: var(--green-light);
	color: var(--green);
}

.badge-destructive {
	background: var(--destructive-light);
	color: var(--destructive);
}

.badge-muted {
	background: var(--muted);
	color: var(--muted-foreground);
}

/* Status badges */
.status-upcoming { background: var(--primary-light); color: var(--primary); }
.status-active { background: var(--green-light); color: var(--green); }
.status-completed { background: var(--muted); color: var(--muted-foreground); }
.status-cancelled { background: var(--destructive-light); color: var(--destructive); }
