/**
 * Canonical status badge colors for all forms.
 * Same component and colors across EC, PR, receiving inspections, project openings.
 * Do not override these in form-specific CSS.
 */
.status-badge {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
}

.status-draft {
  background-color: #ffc107 !important;
  color: #000 !important;
}

.status-saved {
  background-color: #0d6efd !important;
  color: white !important;
}

.status-submitted,
.status-approved {
  background-color: #198754 !important;
  color: white !important;
}

.status-rejected,
.status-cancelled {
  background-color: #dc3545 !important;
  color: white !important;
}

.status-approved_with_restriction {
  background-color: #fd7e14 !important;
  color: white !important;
}
