/* Ticker: basisstijl, valt terug op dark */
.ticker-container {
    width: 100%;
    overflow: hidden;
    background: #1e1e1e; /* Donker: fallback */
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.ticker-wrap {
    display: flex;
    animation: scroll 50s linear infinite;
    min-width: 200%;
}
.ticker {
    display: flex;
    white-space: nowrap;
}
.ticker-item {
    margin-right: 40px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ticker-item img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
/* Slow down on hover */
.ticker-container:hover .ticker-wrap {
    animation-play-state: paused;
}
/* Responsive */
@media (max-width: 768px) {
    .ticker-item {
        font-size: 14px;
        margin-right: 20px;
    }
}

/* Licht thema: witte achtergrond */
body.light-theme .ticker-container {
    background: #fff;
}
/* Donker thema: donkerblauw */
body.dark-theme .ticker-container {
    background: #1e1e1e;
}
