.ticker-bar {
    width: 100%;
    height: 58px;
    background: #1e222d;
    overflow: hidden;
    position: relative;
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, 'Trebuchet MS', Roboto, Ubuntu, sans-serif;
    font-size: 13px;
    line-height: 58px;
}

.ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    border-right: 1px solid #2a2e39;
    gap: 8px;
    flex-shrink: 0;
    cursor: default;
    transition: background 0.2s;
}

.ticker-item:hover {
    background: #2a2e39;
}

.ticker-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    background: #363a45;
    flex-shrink: 0;
}

.ticker-name {
    color: #787b86;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.ticker-price {
    color: #d1d4dc;
    font-size: 13px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.ticker-change {
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    font-weight: 400;
}

.ticker-change.positive {
    color: #26a69a;
}

.ticker-change.negative {
    color: #ef5350;
}

.ticker-change.neutral {
    color: #787b86;
}

.ticker-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #787b86;
    font-size: 13px;
}

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