﻿.list-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
}

.pg-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e2e6ea;
    background: #fff;
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

    .pg-btn:hover {
        background: #eef2fb;
        border-color: #c5d0e8;
    }

    .pg-btn.active {
        background: #3b5fc0;
        color: #fff;
        border-color: #3b5fc0;
    }

    .pg-btn.nav {
        color: #6b8dd6;
    }

    .pg-btn:disabled {
        opacity: 0.35;
        cursor: default;
    }

.pg-ellipsis {
    font-size: 13px;
    color: #9aa3b0;
    padding: 0 2px;
}

.pg-info {
    text-align: center;
    font-size: 13px;
    color: #9aa3b0;
    margin-top: 10px;
}
