.pagination {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
    margin: 30px 0;
    padding: 15px 0;
}

.page-btn {
    padding: 8px 16px;
    background: #a3a3a3;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: #0366d6;
    color: #0366d6;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-num {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    /*border: 1px solid #e1e4e8;*/
    border-radius: 6px;
    color: #24292e;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.page-num:hover {
    border-color: #0366d6;
    color: #0366d6;
}

.page-num.active {
    background: #020202;
    border-color: #eeefef;
    color: #fff;
    font-weight:bold;
}

.page-ellipsis {
    padding: 0 5px;
    color: #6a737d;
    line-height: 36px;
}

@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .page-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .page-num {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 13px;
    }
}