/* Improve mobile pagination layout */
@media (max-width: 767px) {
    .tabulator-footer-contents {
        align-items: flex-start !important;
    }
    .tabulator .tabulator-footer .tabulator-paginator {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end; /* Align content to the right */
        align-items: center;
    }
    .tabulator-paginator-counter {
        width: 100%;
        text-align: left; /* Align row count to the left */
        margin-bottom: 8px;
    }
}
