/* File: css/scroll-highlight.css */

.scroll-highlight {
    background-image: linear-gradient(90deg, #f6d365 0%, #fde185 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: 0 0;
    transition: background-size 0.5s ease-in-out;
    padding: 0 3px;
}

.scroll-highlight.active {
    background-size: 100% 100%;
}