
.status-badge {
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.status-pending {
  background-color: #fff3cd;
  color: #856404;
}

.status-active {
  background-color: #d4edda;
  color: #155724;
}

.status-deactive {
  background-color: #fff3cd;
  color: #856404;
}

.status-approved {
  background-color: #d4edda;
  color: #155724;
}

.status-rejected {
  background-color: #f8d7da;
  color: #721c24;
}

.status-draft {
  background: var(--color-gray);
  color: var(--color-text);
}
.status-queued {
  background: #fff3cd;
  color: #856404;
}
.status-sending {
  background: #cce5ff;
  color: #004085;
}
.status-sent {
  background: #d4edda;
  color: #155724;
}
.status-cancelled {
  background: var(--form-error-bg);
  color: var(--form-error);
}
.status-failed {
  background: var(--form-error-bg);
  color: var(--form-error);
}