/* public/css/sys/ticker.css - 99 Names Ticker */

#xp-99names-ticker {
    color: white;
    font-size: 11px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    margin-right: 10px;
    margin-left: auto; /* Push to the right, but allow compression */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1; /* Allow shrinking */
    min-width: 0; /* Essential for flex text truncation */
    max-width: 50vw; /* Cap it at 50% of screen width */
}

@media (max-width: 600px) {
    #xp-99names-ticker {
        display: none; /* Hide on very small screens to save space */
    }
}
