/* 評分色彩定義（規格書v3第4.1節範例表格用🟢代表偏多、🔴代表偏空，
   這跟台股慣例「紅漲綠跌」的漲跌幅顏色是兩套獨立的配色，不要混為一談：
   評分badge是「多空信號燈」語意（綠=偏多信號、紅=偏空信號），
   漲跌%文字才是台股慣例的紅漲綠跌，見index.html內文字顏色）*/
.score-strong-bullish { background-color: #14532d; color: #bbf7d0; }
.score-bullish        { background-color: #dcfce7; color: #15803d; }
.score-neutral         { background-color: #e5e7eb; color: #374151; }
.score-bearish         { background-color: #fee2e2; color: #b91c1c; }
.score-strong-bearish   { background-color: #7f1d1d; color: #fecaca; }
.score-unknown          { background-color: #f3f4f6; color: #9ca3af; }

.score-badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.exit-warning-safe      { color: #16a34a; }
.exit-warning-caution   { color: #ca8a04; }
.exit-warning-triggered { color: #dc2626; }
.exit-warning-unknown   { color: #9ca3af; }
