/* static/css/mailsms/pagination.css */

.pager {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 0.0625rem solid #d9deea;
}

.pager .link,
.pager .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.125rem;
    height: 2.125rem;
    padding: 0 0.625rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    line-height: 1;
    box-sizing: border-box;
}

.pager .link {
    border: 0.0625rem solid #d1d5db;
    background: #f8fafc;
    color: #334155;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
}

.pager .link:hover {
    background: #eef2f7;
    border-color: #94a3b8;
    text-decoration: none;
}

.pager .link:active {
    transform: translateY(0.0625rem);
}

.pager .current {
    border: 0.0625rem solid #94a3b8;
    background: #e2e8f0;
    color: #0f172a;
    font-weight: 700;
}