#news-ticker-container {
    display: flex;
    border: 2px solid #007bff;
    background: #fff;
    font-family: sans-serif;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.ticker-label {
    background: #007bff;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: scroll-left linear infinite;
}

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

.ticker-track a {
    color: #000;
    font-weight: bold;
    margin-right: 40px;
    text-decoration: none;
}
