/*
 * Hand-written, not Tailwind-generated. Filament's compiled app.css only
 * contains the small set of utility classes its own templates and this
 * app's Blade files literally reference - arbitrary classes referenced only
 * from a PHP match() (like bg-orange-400) never get generated and silently
 * have no effect. These are plain CSS rules so they always exist regardless
 * of what Tailwind's build happened to scan.
 * !important is required once the WIP list switches to the Split/Stack
 * "list" layout, whose row wrapper (.fi-ta-record) ships its own
 * unconditional bg-white/dark:bg-gray-900 in the same class attribute.
 */
/* Dulled to ~70% strength (blended 70% color / 30% white) per Tora - the
   original tones were too rich/saturated for a full row background. */
.wip-priority-urgent {
    background-color: #fcb377 !important;
}

.wip-priority-waiting {
    background-color: #cfeefe !important;
}

.wip-priority-blocked {
    background-color: #fa9c9c !important;
}

.wip-priority-complete {
    background-color: #80e8a6 !important;
}

.wip-priority-cancelled {
    background-color: #d6d3cc !important;
}

/* Hides Filament's default Items/Checklist relation-manager tab pill on
   WIP pages only - .fi-resource-work-in-progresses is a real wrapping
   class Filament adds specifically to this resource's pages, so this
   can't leak into any other resource's tabs (Quotes, Costings etc. all
   use the same shared .fi-tabs component). Replaced by the custom
   two-button switcher in wip-tab-switcher.blade.php. */
.fi-resource-work-in-progresses .fi-tabs {
    display: none;
}
