/**
 *
 * Reading Progress Bar extension for the phpBB Forum Software package.
 *
 * @copyright (c) 2026 stoker - https://phpbb3bbcodes.com/
 * @license GNU General Public License, version 2 (GPL-2.0)
 *
 */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    background: #C1D7EA;
    box-shadow: 0px 0px 4px 1px rgba(42, 38, 158, 0.85);
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.05s linear;
}
html.phpbb-dark-mode #reading-progress {
    background: #7cc1ff;
    box-shadow: 0px 0px 4px 1px rgba(231, 255, 46, 0.63);
}
@media (prefers-reduced-motion: reduce) {
    #reading-progress {
        transition: none;
    }
}