/* Enhanced Market Ticker Styles */
.market-ticker {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid #d4af37;
}

.ticker-content {
    display: flex;
    animation: scroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    margin-right: 3rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.ticker-symbol {
    font-weight: 700;
    margin-right: 0.5rem;
    color: #d4af37;
}

.ticker-price {
    margin-right: 0.5rem;
}

.ticker-change {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.ticker-change.positive {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.ticker-change.negative {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .ticker-item {
        margin-right: 2rem;
        font-size: 0.8rem;
    }
}

