/* For the topbar ticker animation */
#topbar-ticker {
    /* The width is doubled in JS, so we only need to translate by 50% */
    animation: ticker-scroll 40s linear infinite;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Fix favorite icon fill issue */
.favorite-btn svg {
    fill: currentColor;
}