/* ==========================================
   PAGINADOR ADMIN GLOBAL
========================================== */

.pagerWrap{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:40px;
    margin-bottom:40px;
}

.pager{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.pager__btn{
    width:38px;
    height:38px;
    border-radius:999px;
    background:#0b78c6;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
    border:2px solid transparent; /* 🔥 evita salto al activar */
}

.pager__btn:hover:not(.is-active){
    background:#003f9e;
}

/* 🔥 BOTÓN ACTIVO (PÁGINA ACTUAL) */
.pager__btn.is-active{
    background:#0aa64f;
    border:2px solid #0aa64f;
    color:#fff;
    font-weight:900;
    transform:scale(1.1);
    box-shadow:0 4px 10px rgba(0,0,0,.2);
    pointer-events:none;
}

/* DESHABILITADO */
.pager__btn.is-disabled{
    opacity:.4;
    pointer-events:none;
}

/* PUNTOS SUSPENSIVOS */
.pager__dots{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6b7280;
    font-weight:700;
    user-select:none;
}
