.pagination-box {
    margin-top: 40px;
    text-align: center;
}

.page-list {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-list a,
.page-list span {
    display: inline-block;
    padding: 7px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s;
}

.page-list a:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.page-list span.current,
.page-list .active {
    background: #1890ff;
    color: #fff;
    border-color: #1890ff;
}

.page-list span.disabled {
    color: #bbb;
    background: #fafafa;
    border-color: #eee;
    cursor: not-allowed;
}

.page-stats {
    margin-top: 12px;
    color: #888;
    font-size: 14px;
}

.page-stats strong {
    color: #333;
    font-weight: 600;
}
