/**
 * Scroll Progress Bar Styles
 * Datei: assets/css/scroll-progress.css
 */

.reader-tools-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #4b5563;
    z-index: 9999;
    transition: width 0.1s ease-out;
}

.reader-tools-scroll-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to right, transparent, currentColor);
    opacity: 0.5;
}

body.admin-bar .reader-tools-scroll-progress {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .reader-tools-scroll-progress {
        top: 46px;
    }
}

/* Barrierefreiheit: Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
    .reader-tools-scroll-progress {
        transition: none !important;
    }

    html {
        scroll-behavior: auto !important;
    }
}