/* Status table cell flex containers */
.status-cell-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.status-cell-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}
/* Ensure table cells containing status cells are vertically aligned */
td:has(.status-cell-left),
td:has(.status-cell-right) {
    vertical-align: middle;
}