.custom-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
}

.custom-pagination-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

    .custom-pagination-wrapper.with-selector {
        justify-content: center;
        width: 100%;
    }

.custom-pagination-selector {
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.custom-pagination-nav {
    display: block;
}

.custom-pagination-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.custom-pagination-item {
    padding: 0;
    margin-inline-end: 8px;
}

.custom-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    color: #3c4858;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}


.custom-pagination-link:hover {
    background: #ddd;
}

[data-theme="dark"] .custom-pagination-link {
    color: #fff;
}

    [data-theme="dark"] .custom-pagination-link:hover {
        background: #444;
    }

    .custom-pagination-item.active .custom-pagination-link,
    .custom-pagination-link.active {
        background: #3274f0;
        color: #fff;
        border: none;
        box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
    }

        .custom-pagination-item.active .custom-pagination-link:hover {
            background: #0350d6;
        }

.custom-pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6px;
    height: 36px;
    color: #999;
}
@media (min-width: 992px) {
    .custom-pagination-wrapper.with-selector {
        justify-content: flex-start;
        width: 80%;
    }

    .custom-pagination-selector {
        margin-top: unset;
        width: 20%;
    }
    }