.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 28px 0;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #4a4d5a;
    border: 1px solid #e0e2ea;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.15s;
}

.page-btn:hover {
    background: #f5f6f8;
    border-color: #c7cad8;
    color: #1a1a2e;
}

.page-btn.active {
    background: #3a3f4b;
    color: #fff;
    border-color: #3a3f4b;
    cursor: default;
}

.page-btn.disabled {
    background: #f5f6f8;
    color: #b0b3c0;
    border-color: #eceef2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .pagination {
        gap: 4px;
        margin: 20px 0;
    }

    .page-btn {
        min-width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }
}
