.stock-graph-container{width:100%;height:100%;display:flex;flex-direction:column;position:relative}.stock-graph-container .graph-header{margin-bottom:.5rem}.stock-graph-container .graph-header .ticker-info{display:flex;justify-content:space-between;align-items:center}.stock-graph-container .graph-header .ticker-info .ticker-symbol{font-size:var(--font-size);font-weight:600;margin:0;color:var(--text-color)}.stock-graph-container .graph-header .ticker-info .price-change{display:flex;align-items:center;gap:5px;font-size:var(--font-size-sm);font-weight:500}.stock-graph-container .graph-header .ticker-info .price-change.positive{color:#22c55e}.stock-graph-container .graph-header .ticker-info .price-change.negative{color:#ef4444}.stock-graph-container .graph-body{flex:1 1;width:100%;height:100%;border-radius:var(--border-radius);overflow:hidden}.stock-graph-container .tradingview-widget-container{border-radius:var(--border-radius);overflow:hidden;background-color:#fff;height:100%;padding:2px;width:100%;min-height:0;max-height:100%;position:relative}.stock-graph-container .tradingview-widget-container iframe{display:block;height:100%!important;max-height:100%}.stock-graph-container .tradingview-widget-container .tradingview-widget-container__widget{height:100%!important;max-height:100%}.stock-graph-container .tradingview-widget-container .tradingview-widget-copyright{display:none}.stock-graph-container .tradingview-widget-container .ticker-overlays-container{display:flex;flex-direction:row;width:100%;height:100%;pointer-events:all}.stock-graph-container .tradingview-widget-container .ticker-overlay{cursor:pointer;flex:1 1;position:relative}.stock-graph-container .tradingview-widget-container .ticker-overlay:hover{background-color:rgba(166,145,108,.05)}.stock-graph-container .tradingview-widget-container .ticker-overlay:active{background-color:rgba(166,145,108,.1)}.stock-graph-container.loading .skeleton-graph{width:100%;height:100%;min-height:80px;background:linear-gradient(90deg,rgba(255,255,255,.05) 25%,rgba(255,255,255,.1) 50%,rgba(255,255,255,.05) 75%);background-size:200% 100%;animation:loading 1.5s infinite;border-radius:var(--border-radius)}.stock-graph-container.error .error-message{color:#ef4444;background-color:rgba(239,68,68,.1)}.stock-graph-container.error .error-message,.stock-graph-container.no-data .no-data-message{width:100%;height:100%;min-height:80px;display:flex;align-items:center;justify-content:center;font-size:var(--font-size-sm);border-radius:var(--border-radius)}.stock-graph-container.no-data .no-data-message{color:var(--text-light);background-color:hsla(0,0%,100%,.05)}@keyframes loading{0%{background-position:200% 0}to{background-position:-200% 0}}