.stock-ticker {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.ticker-symbol {
    font-weight: 600;
    font-size: 1.1em;
    color: #2c3e50;
}

.ticker-price {
    font-size: 1.2em;
    font-weight: 700;
    color: #2c3e50;
}

.ticker-change {
    font-weight: 500;
    transition: color 0.3s ease;
}

.ticker-change.positive {
    color: #00c853;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .stock-ticker {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .ticker-symbol,
    .ticker-price {
        font-size: 1em;
    }
} 