.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  border-radius: 999px;
  border: 1px solid var(--color-border);
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.4;
}

.status-badge--pending {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #78350f;
}

.status-badge--registered,
.status-badge--active,
.status-badge--matched {
  background: #dcfce7;
  border-color: #22c55e;
  color: #14532d;
}

.status-badge--checked-out {
  background: #e0e7ff;
  border-color: #818cf8;
  color: #312e81;
}

.status-badge--destroyed,
.status-badge--retired,
.status-badge--missing {
  background: #fee2e2;
  border-color: #ef4444;
  color: #7f1d1d;
}

.status-badge--waived,
.status-badge--unknown {
  background: var(--color-surface-muted);
  border-color: var(--color-border-strong);
  color: var(--color-text-muted);
}
