[data-auto-pagination-pager] {
    display: none !important;
}

.auto-scroll-status {
        display: grid;
        justify-items: center;
        gap: 10px;
        margin-top: 14px;
        padding: 8px 0 4px;
        color: var(--muted, #7c8795);
    }

    .auto-scroll-label {
        font-size: .84rem;
        font-weight: 700;
    }

    .auto-scroll-spinner {
        width: 24px;
        height: 24px;
        border: 2px solid rgba(17, 24, 39, .12);
        border-top-color: var(--accent, #1c8791);
        border-radius: 999px;
        animation: auto-scroll-spin .72s linear infinite;
    }

    .auto-scroll-btn {
        min-height: 42px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid var(--line, #e7edf2);
        background: var(--surface, #fff);
        color: var(--text, var(--ink, #111827));
        font: inherit;
        font-size: .84rem;
        font-weight: 700;
        cursor: pointer;
    }

    .auto-scroll-sentinel {
        width: 100%;
        height: 1px;
    }

    @keyframes auto-scroll-spin {
        to {
            transform: rotate(360deg);
        }
    }
