/* Align DataTable length selection dropdown */
.dataTables_length label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

/* Align DataTable search input */
.dataTables_filter label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}
/* Reduce the size of the dropdown and search input */
.dataTables_length select,
.dataTables_filter input {
    width: 50%; /* Reduce width to half */
}
