/* assets/css/style.css */
.scrolling-titles-container {
    max-height: 300px;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 8px;
    background: #fff;

}

.scrolling-titles {
    animation: scroll 20s linear infinite;
}

.scrolling-titles:hover {
    animation-play-state: paused;
}

.scroll-item {
    padding: 10px;
    margin: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
}

.scroll-item:hover {
    background-color: #f9f9f9;
}

.scroll-item i {
    margin-right: 5px;
    color: #F2441D;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}