.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  background: #f2f4f7;
  color: #344054;
}

.status-pill-pending,
.status-pill-retry-pending {
  background: #fffaeb;
  color: #b54708;
}

.status-pill-running,
.status-pill-cancellation-requested {
  background: #eff8ff;
  color: #175cd3;
}

.status-pill-completed {
  background: #ecfdf3;
  color: #027a48;
}

.status-pill-failed,
.status-pill-max-attempts-failed {
  background: #fef3f2;
  color: #b42318;
}

.status-pill-cancelled {
  background: #f2f4f7;
  color: #475467;
}

#sageImportError {
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef3f2;
  border: 1px solid #fecdca;
  color: #b42318 !important;
}