.table-pagination ul.pagination {
    list-style: none;         /* Remove bullet points */
    padding-left: 0;
    display: flex;            /* Force horizontal alignment */
    gap: 6px;                 /* Optional: space between items */
    justify-content: right; /* Center the pagination */
    align-items: center;
}

.table-pagination li.page-item {
    display: inline-block;    /* Ensure horizontal layout */
}

.table-pagination .page-link {
    border-radius: 0.375rem;
    padding: 0.4rem 0.75rem;
    color: #0d6efd;
    border: 1px solid #dee2e6;
}

.table-pagination .page-item.active .page-link {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}
