/**
 * sentiment_widget.css
 * BEM namespace: .sentiment-widget
 */

.sentiment-widget {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

.sentiment-widget__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.sentiment-widget__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sentiment-widget__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sentiment-widget__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.sentiment-widget__symbol {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 13px;
}

.sentiment-widget__nums {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-2);
    font-feature-settings: "tnum";
}

.sentiment-widget__bar {
    height: 6px;
    border-radius: 999px;
    background: var(--surface-2);
    overflow: hidden;
    display: flex;
}

.sentiment-widget__bar-bull {
    background: linear-gradient(90deg, var(--green) 0%, #4ade80 80%, color-mix(in srgb, var(--green) 60%, var(--red)) 100%);
}

.sentiment-widget__bar-bear {
    background: linear-gradient(90deg, color-mix(in srgb, var(--red) 60%, var(--green)) 0%, var(--red) 100%);
}
