/* ===== Regional Market Ticker (TradingView widget wrapper) ===== */
.market-ticker {
    background: #ffffff;
    border-top: 1px solid #e5e9ec;
    border-bottom: 1px solid #e5e9ec;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.market-ticker .tradingview-widget-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Hide the TradingView copyright banner that sometimes appears below */
.market-ticker .tradingview-widget-copyright {
    display: none !important;
}

/* Subtle accent line under the ticker matching the toolshub teal */
.market-ticker::after {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(90deg, #00d09c, #00a87a, #00d09c);
    opacity: 0.85;
}

/* Mobile tweaks - the widget is responsive on its own; just trim height */
@media (max-width: 480px) {
    .market-ticker {
        font-size: 12px;
    }
}
