/* * CSS for Workorder Table Row Highlighting (Balanced Colors) */ /* 🔴 Urgent: Deadline passed or less than 1 week away */ .table-hover .tt-rml-workorder-urgent:hover, .tt-rml-workorder-urgent { background-color: #f8d7da !important; /* Balanced Red */ } /* 🟡 Medium: Deadline less than 3 weeks away */ .table-hover .tt-rml-workorder-medium:hover, .tt-rml-workorder-medium { background-color: #fff3cd !important; /* Balanced Yellow */ } /* 🟢 On Track: Deadline more than 3 weeks away */ .table-hover .tt-rml-workorder-ontrack:hover, .tt-rml-workorder-ontrack { background-color: #d4edda !important; /* Balanced Green */ } /* ⚫ Irrelevant: No deadline or status makes it not applicable */ .table-hover .tt-rml-workorder-irrelevant:hover, .tt-rml-workorder-irrelevant { background-color: #e9ecef !important; /* Balanced Grey */ }