/**
 * Fix: Show Filament table pagination below the table instead of beside it.
 * Targets the table container so table and pagination stack vertically.
 */
.fi-ta-ctn {
    display: flex !important;
    flex-direction: column !important;
}

.fi-ta-ctn .fi-pagination {
    width: 100% !important;
    flex-shrink: 0;
    margin-top: auto;
}
