/* Status text coloring (only the text inside the status column/cell) */
.status-text { font-weight: 600; }

/* Core statuses */
.status-success { color: var(--bs-success); }
.status-warning { color: var(--bs-warning); }
.status-error { color: var(--bs-danger); }
.status-failed { color: var(--bs-danger); }

/* Missed: distinct from warning */
.status-missed { color: #6f42c1; } /* Bootstrap-ish purple */

/* Override applied indicator (text only) */
.status-override { color: var(--bs-info); }

/* Optional: make empty status look normal */
.status-text:empty { font-weight: inherit; }
