.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35em 0.75em;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  box-sizing: border-box;
}

.status-pill--muted {
  background: #fff8e6;
  color: #a65c0a;
  border: 1px solid rgba(166, 92, 10, 0.2);
}

.status-pill--neutral {
  background: #f1f3f5;
  color: #495057;
  border: 1px solid #e9ecef;
}

.status-pill--success {
  background: #d3f3e0;
  color: #0f5132;
  border: 1px solid rgba(25, 160, 92, 0.35);
}

.status-pill--danger {
  background: #f8d7da;
  color: #842029;
  border: 1px solid rgba(220, 53, 69, 0.35);
}

.status-pill--draft {
  gap: 0.25rem;
  background: #e7f1ff;
  color: #0a58ca;
  border: 1px solid rgba(13, 110, 253, 0.22);
}

.status-pill--with-icon {
  gap: 0.28rem;
}

.status-pill--with-icon svg {
  flex-shrink: 0;
}

.status-pill--draft .status-pill-dot {
  margin-right: 0;
}

.status-pill-dot {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  flex-shrink: 0;
  vertical-align: 0;
}

.status-pill-dot--info {
  background: #0d6efd;
}