/*
 * Custom status badge colors for FIELD_CHOICES entries.
 *
 * NetBox renders status values using classes like `text-bg-<color>`.
 * Define any non-default color names here using hex values.
 */

.text-bg-shipped {
  color: #111827 !important;
  background-color: #fbbf24 !important;
  border: 1px solid #d97706 !important;
}

.text-bg-delivered {
  color: #ffffff !important;
  background-color: #0d9488 !important;
  border: 1px solid #0f766e !important;
}

.text-bg-received {
  color: #ffffff !important;
  background-color: #0284c7 !important;
  border: 1px solid #0369a1 !important;
}

.text-bg-installed {
  color: #ffffff !important;
  background-color: #15803d !important;
  border: 1px solid #166534 !important;
}

.text-bg-prod {
  color: #ffffff !important;
  background-color: #14532d !important;
  border: 1px solid #052e16 !important;
}

.text-bg-dev {
  color: #ffffff !important;
  background-color: #2563eb !important;
  border: 1px solid #1d4ed8 !important;
}

.text-bg-cm-hold {
  color: #ffffff !important;
  background-color: #dc2626 !important;
  border: 1px solid #b91c1c !important;
}

.text-bg-maintenance {
  color: #111827 !important;
  background-color: #fb923c !important;
  border: 1px solid #ea580c !important;
}

.text-bg-prospect {
  color: #ffffff !important;
  background-color: #7c3aed !important;
  border: 1px solid #6d28d9 !important;
}

.text-bg-install {
  color: #ffffff !important;
  background-color: #1d4ed8 !important;
  border: 1px solid #1e40af !important;
}

.text-bg-verification {
  color: #111827 !important;
  background-color: #fde047 !important;
  border: 1px solid #eab308 !important;
}

.text-bg-vendor {
  color: #ffffff !important;
  background-color: #be123c !important;
  border: 1px solid #9f1239 !important;
}

.text-bg-onboarding {
  color: #111827 !important;
  background-color: #34d399 !important;
  border: 1px solid #10b981 !important;
}

.text-bg-inactive {
  color: #ffffff !important;
  background-color: #4b5563 !important;
  border: 1px solid #374151 !important;
}