.status.pending,
.status.processing {
  background: #44381f;
  color: var(--amber);
}

.status.approved {
  background: #253c35;
  color: var(--mint);
}

.status.rejected {
  background: #422923;
  color: var(--red);
}

.status.sent {
  background: #253c35;
  color: var(--mint);
}

.status.failed {
  background: #422923;
  color: var(--red);
}

.decision-actions {
  display: flex;
  gap: 0.45rem;
}

.decision-actions button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.48rem 0.65rem;
  color: var(--text);
  cursor: pointer;
}

.decision-actions .approve {
  background: #194738;
}

.decision-actions .reject {
  background: #4a2824;
}
