.rss-ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
    padding: 10px;
    position: relative;
    border: 1px solid #ddd;
}

.rss-ticker-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.rss-ticker {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.rss-ticker ul {
    display: flex;
    animation: ticker-scroll 20s linear infinite;
    list-style: none;
    padding: 0;
    margin: 0;
}

.rss-ticker li {
    margin-right: 50px;
}

.rss-ticker a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
