.pagination-bullet {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    user-select: none;
}

.pagination-bullet .page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    cursor: pointer;
    color: #333333;
    transition: background 0.15s, color 0.15s;
    border: none;
    background: transparent;
}

.pagination-bullet .page-item:hover:not(.active):not(.dots):not(.arrow):not(:disabled) {
    background: #CCEEDC;
}

.pagination-bullet .page-item.active {
    background: #00A94F;
    color: #fff;
    cursor: default;
}

.pagination-bullet .page-item.dots {
    font-size: 16px;
    cursor: default;
    border-radius: 0;
}

.pagination-bullet .page-item.arrow {
    position: relative;
}

.pagination-bullet .page-item.arrow.prev::before,
.pagination-bullet .page-item.arrow.next::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.pagination-bullet .page-item.arrow.prev::before {
    background-image: url(/SiteCollectionDocuments/assets/pagination/img/arrow-left.svg);
}

.pagination-bullet .page-item.arrow.next::before {
    background-image: url(/SiteCollectionDocuments/assets/pagination/img/arrow-right.svg);
}

.pagination-bullet .page-item.arrow:disabled {
    opacity: 0;
    pointer-events: none;
}