﻿/* Ensure DataTables pagination aligns correctly with Bootstrap */
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: flex-end !important; /* Standard Bootstrap pagination alignment */
    float: none !important; /* Override any conflicting floats */
}

    /* Potentially override styles on list items if they are misbehaving */
    div.dataTables_wrapper div.dataTables_paginate ul.pagination li.next {
        float: none !important;
        display: inline-block !important; /* Ensure they behave like Bootstrap list items */
        position: relative !important;
        padding: 0px !important;
        margin-top: 0px !important;
        }