// Leave Balance Grid coloring, matching XENHR's LeaveBalancePage exactly
// (Used: text-red-600, Remaining: text-green-600). Scoped to our own
// field names via the data-xeno-measure attribute added in
// pivot_measure_color.xml, so this can never affect any other pivot view.

td.o_pivot_cell_value[data-xeno-measure="xeno_used_days"] .o_value {
    color: #dc2626; // Tailwind red-600
    font-weight: 600;
}

td.o_pivot_cell_value[data-xeno-measure="xeno_remaining_days"] .o_value {
    color: #16a34a; // Tailwind green-600
    font-weight: 600;
}

td.o_pivot_cell_value[data-xeno-measure="number_of_days"] .o_value {
    color: #1d4ed8; // a calm blue for Allocated, distinct from the other two
    font-weight: 600;
}
