/* Pagination spacing fix */
.hidden.sm\\:flex-1.sm\\:flex.sm\\:items-center.sm\\:justify-between {
    gap: 2rem !important;
}

/* Alternative approach */
.hidden.sm\\:flex-1.sm\\:flex.sm\\:items-center.sm\\:justify-between > div:first-child {
    margin-right: 2rem !important;
}

/* For mobile responsiveness */
@media (max-width: 640px) {
    .hidden.sm\\:flex-1.sm\\:flex.sm\\:items-center.sm\\:justify-between > div:first-child {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
}