/* Пагинация AdminLinkPager (админка и публичные страницы) */

.admin-pager-nav {
    display: flex;
    justify-content: center;
    margin: 0;
}

.admin-pager {
    gap: 0.25rem;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    margin: 0;
}

.admin-pager .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.45rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #475569;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: none;
}

.admin-pager .page-item .page-link:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #1e293b;
}

.admin-pager .page-item.active .page-link,
.admin-pager .page-item.active .page-link:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.admin-pager .page-item.disabled .page-link {
    background: #f8fafc;
    border-color: #e8ebf0;
    color: #cbd5e1;
    pointer-events: none;
}

.admin-pager .page-item + .page-item {
    margin-left: 0;
}
