.line-container {
    display: flex;              /* Keep items in one line */
    align-items: center;        /* Vertically center */
    white-space: nowrap;        /* Prevent wrapping */
    overflow: hidden;           /* Hide overflow for scrolling */
    background: #f0f0f0;
    padding: 5px;
    font-family: Arial, sans-serif;
}

/* Static text styling */
.static-text {
    font-weight: bold;
    margin-right: 10px;
}

/* Scrolling text animation */
.marquee-text {
    display: inline-block;
    padding-left: 100%;         /* Start from right */
    animation: scroll-left 10s linear infinite;
}

/* Keyframes for scrolling effect */
@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

