/**
 * Color-coded status pills for field_asset_status values.
 * Applied via a class on the taxonomy term reference field formatter,
 * see pnao_assets.theme preprocess_field__field_asset_status().
 */

.asset-status-badge {
  display: inline-block;
  padding: 0.15em 0.75em;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
}

.asset-status-badge--unassigned {
  background-color: #e5e7eb;
  color: #374151;
}

.asset-status-badge--assigned {
  background-color: #dcfce7;
  color: #166534;
}

.asset-status-badge--ready-for-handoff {
  background-color: #dbeafe;
  color: #1e40af;
}

.asset-status-badge--in-maintenance {
  background-color: #fef3c7;
  color: #92400e;
}

.asset-status-badge--on-order {
  background-color: #e0e7ff;
  color: #3730a3;
}

.asset-status-badge--replaced {
  background-color: #fce7f3;
  color: #9d174d;
}

.asset-status-badge--retired,
.asset-status-badge--disposed {
  background-color: #f3f4f6;
  color: #6b7280;
}
