.market-ticker {
    background: var(--bg-tertiary);
    padding: 12px 20px;
    overflow-x: auto;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: inline-flex;
    gap: 30px;
    white-space: nowrap;
    width: max-content;
}

.ticker-track.animate {
    animation: tickerScroll 20s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
    font-family: 'IBM Plex Mono', monospace;
    flex-shrink: 0;
}

.ticker-symbol {
    color: var(--text-secondary);
}

.ticker-price {
    font-weight: 600;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

tbody tr {
    animation: slideIn 0.3s ease-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}