@charset "utf-8";
/* CSS Document */

.chyron-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #02389e;
    color: white;
    overflow: hidden; /* Essential for scrolling */
    z-index: 1000; /* Ensures it stays on top */
}

.chyron-text {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    font-family: "Satoshi", sans-serif;
    font-weight: bold;
    /* Add animation property here for scrolling */
}

@keyframes ticker {
    0% { transform: translate3d(100%, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.chyron-text {
    animation: ticker 15s linear infinite;
}