.table#expenseRecoveryTable td{
    vertical-align: middle; /* Center align the content vertically */
    max-width: 350px !important;
}

/* Style for the Invoice Id column */
.invoice-id-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style for the header checkbox */
.header-checkbox {
    transform: scale(1.5); /* Increase the size of the checkbox */
    margin-right: 10px; /* Add some space between checkbox and text */
}

/* Style for the checkbox in the table body */
.invoice-id-column input[type="checkbox"] {
    transform: scale(1.5); /* Increase the size of the checkbox */
    margin-right: 10px; /* Add some space between checkbox and dropdown */
}

/* Style for the select dropdown */
.invoice-id-column select {
    width: -webkit-fill-available; /* Adjust the width as needed */

}