.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin: 30px 0;
    justify-content: center;
}

.page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    color: #333;
    border: 1px solid #eee;
    cursor: pointer;
}

.page-btn.active {
    pointer-events: none;
    background: #ff8c00;
    color: #fff;
    border-color: #ff8c00;
}

.page-btn:hover {
    background: #f5f5f5;
}

.ellipsis {
    color: #999;
}