/* Ticker container styles */
.ticker-container {
    width: 80%;
    max-width: 800px;
    height: 50px;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

/* Ticker content styles */
.ticker-content {
    position: absolute;
    white-space: nowrap;
    color: black;
    font-size: 20px;
    line-height: 50px;
    padding-left: 100%;
    animation: ticker 20s linear infinite;
}

/* Ticker animation */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Text input container */
#text-input {
    margin-top: 20px;
    width: 80%;
    max-width: 800px;
}

/* Text input style */
input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Main container */
#main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
