/* Remove/reset some styles from the default theme */
:is(#pagination-top, #pagination) .ais-Pagination-link {
    box-shadow: unset;
    background-image: unset;
    border: unset;
    font-size: 2rem;
}

/* Hide pagination by default */
.ais-Pagination-list {
    display: none;
    text-align: center;
}

/* Show pagination when there is at least one page */
.ais-Pagination-list:has(.ais-Pagination-item--page + .ais-Pagination-item--page) {
    display: block;
}

/* Hide disabled buttons such as "previous" on the first page and "next" on the last */
:is(#pagination-top, #pagination) :is(.ais-Pagination-item--disabled, .ais-Pagination-item--disabled *) {
    color: transparent;
    background: unset;
    border: unset;
    cursor: unset;
}

