/*
 * Custom style to fix the readability of the read-only 'Total' field on the invoice form.
*/
.form-control[readonly].line-total-display {
    background-color: #FFFFFF !important; /* White background */
    color: #212529 !important;           /* Dark text */
    opacity: 1 !important;
}

/*
 * Fix vertical alignment in the line items table.
*/
#item-form-list td {
    vertical-align: top;
}

/*
 * NEW RULE: Custom class to center the quantity field text.
 * This avoids conflicts with any generic '.text-center' rules.
*/
.quantity-input {
    text-align: center;
}