
.gex-update-time {
    text-align: right;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.25rem 0;
    font-variant-numeric: tabular-nums;
}
.gex-info-card {
    padding: 1rem 1.25rem;
}
.gex-info-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.gex-info-header svg {
    color: #6366f1;
    flex-shrink: 0;
}
.gex-info-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.gex-info-body p {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.gex-info-body em {
    color: var(--text-primary);
    font-style: normal;
    font-weight: 500;
}
.gex-formula {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}
.gex-formula-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.formula-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #8b5cf6;
    white-space: nowrap;
}
.formula-eq {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}
.formula-eq sub {
    font-size: 0.65rem;
}
.gex-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.gex-info-tag {
    flex: 1;
    min-width: 220px;
    font-size: 0.8rem;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    line-height: 1.5;
}
.gex-positive {
    background: rgba(8, 153, 129, 0.08);
    border: 1px solid rgba(8, 153, 129, 0.2);
    color: #089981;
}
.gex-positive strong {
    color: #089981;
}
.gex-negative {
    background: rgba(242, 54, 69, 0.08);
    border: 1px solid rgba(242, 54, 69, 0.2);
    color: #f23645;
}
.gex-negative strong {
    color: #f23645;
}
.gex-section {
    padding: 0;
}
.gex-chart-container {
    padding: 0.75rem 1rem 1rem;
    height: 420px;
    position: relative;
}
.iv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.iv-chart-container {
    padding: 0.75rem 1rem 1rem;
    height: 320px;
    position: relative;
}
.gex-badge {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}
.header-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.export-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}
.export-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--border-glow);
}
@media (max-width: 768px) {
    .gex-chart-container {
        height: 300px;
    }
    .iv-grid {
        grid-template-columns: 1fr;
    }
    .iv-chart-container {
        height: 260px;
    }
}
.iv-mean-label {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--text-primary);
    white-space: nowrap;
}
[data-theme="light"] .iv-mean-label {
    color: #0f172a;
}