/**
 * OptionFinder - Scanner Styles: LIQUIDITY
 * 
 * Diese Datei enth&auml;lt NUR Styles f&uuml;r Spalten der Kategorie "Liquidit&auml;t":
 * - Volumen-Filter mit Schnellauswahl
 * - Contango-Filter mit Schnellauswahl
 * - Open Interest (falls vorhanden)
 * 
 * NICHT hier: Layout, Tabellen-Basis, andere Kategorien
 * 
 * @package OptionFinder_Member_Area
 * @version 3.4.0
 * @since 3.4.0 - NEU: Avg Opt Volume Filter, Put/Call Ratio Filter mit Schnellauswahl
 * @since 3.3.0 - FIX: Contango checked-Styles behalten eigene Button-Farbe (nicht global gr&uuml;n)
 * @since 3.2.1 - FIX: Legende ohne Hintergrundfarbe (nur Textfarbe)
 * @since 3.2.0 - Contango Farblegende: Neutral=grau, Achtung=gelb, alle 5 Buttons mit Stillhalter-Farben, Hint Zeilenumbruch
 * @since 3.0.0 - Aufgeteilt aus dashboard-starter.css
 * 
 * @see dashboard-starter-base.css f&uuml;r Grundstruktur
 */

/* =====================================================
   VOLUMEN-FILTER mit Schnellauswahl
   ===================================================== */
.filter-volume__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ofma-color-slate-700);
    margin-bottom: 0.25rem;
}

.filter-volume__quickselect {
    border-top: 1px solid var(--ofma-color-slate-200);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.filter-volume__quickselect-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ofma-color-slate-600);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kachel-Container - 3 Buttons oben, 2 Buttons unten (links, gleiche Breite) */
.filter-volume__quickselect-options {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.375rem;
}

/* Erste Reihe: 3 Buttons je 2 Spalten */
.filter-volume__radio:nth-child(1),
.filter-volume__radio:nth-child(2),
.filter-volume__radio:nth-child(3) {
    grid-column: span 2;
}

/* Zweite Reihe: 2 Buttons links (gleiche Breite wie oben) */
.filter-volume__radio:nth-child(4) {
    grid-column: 1 / 3;
}

.filter-volume__radio:nth-child(5) {
    grid-column: 3 / 5;
}

/* Kachel-Design */
.filter-volume__radio {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.25rem;
    border: 1px solid var(--ofma-color-slate-200);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    background: var(--ofma-color-slate-50);
    text-align: center;
}

.filter-volume__radio:hover {
    background: var(--ofma-color-slate-100);
    border-color: var(--ofma-color-slate-300);
}

.filter-volume__radio input[type="radio"] {
    display: none;
}

.filter-volume__radio-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ofma-color-slate-700);
}

/* Empfohlene Option hervorheben (> 1M) */
.filter-volume__radio--recommended {
    border-color: var(--ofma-color-primary);
    background: rgba(20, 184, 166, 0.05);
}

.filter-volume__radio--recommended .filter-volume__radio-label {
    color: var(--ofma-color-primary);
    font-weight: 600;
}

/* Hinweistext */
.filter-volume__hint {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    color: var(--ofma-color-primary);
    margin-top: 0.75rem;
    padding: 0.375rem 0.5rem;
    background: rgba(20, 184, 166, 0.08);
    border-radius: var(--ofma-radius-sm);
}

.filter-volume__hint-icon {
    font-size: 0.75rem;
}

/* Ausgewaehlte Radio Option */
.filter-volume__radio:has(input:checked) {
    background: var(--ofma-color-primary);
    border-color: var(--ofma-color-primary);
}

.filter-volume__radio:has(input:checked) .filter-volume__radio-label {
    color: white;
}

/* Dark Mode - Volume Filter */
[data-theme="dark"] .filter-volume__label {
    color: var(--ofma-color-slate-300);
}

[data-theme="dark"] .filter-volume__quickselect {
    border-top-color: var(--ofma-color-slate-600);
}

[data-theme="dark"] .filter-volume__quickselect-label {
    color: var(--ofma-color-slate-400);
}

[data-theme="dark"] .filter-volume__radio {
    background: var(--ofma-color-slate-700);
    border-color: var(--ofma-color-slate-600);
}

[data-theme="dark"] .filter-volume__radio:hover {
    background: var(--ofma-color-slate-600);
    border-color: var(--ofma-color-slate-500);
}

[data-theme="dark"] .filter-volume__radio-label {
    color: var(--ofma-color-slate-200);
}

[data-theme="dark"] .filter-volume__radio--recommended {
    border-color: var(--ofma-color-primary);
    background: rgba(20, 184, 166, 0.15);
}

[data-theme="dark"] .filter-volume__radio--recommended .filter-volume__radio-label {
    color: var(--ofma-color-primary-light, #5eead4);
}

[data-theme="dark"] .filter-volume__hint {
    background: rgba(20, 184, 166, 0.15);
    color: var(--ofma-color-primary-light, #5eead4);
}

/* =====================================================
   CONTANGO-FILTER mit Schnellauswahl
   ===================================================== */
.filter-contango__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ofma-color-slate-700);
    margin-bottom: 0.25rem;
}

.filter-contango__quickselect {
    border-top: 1px solid var(--ofma-color-slate-200);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.filter-contango__quickselect-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ofma-color-slate-600);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kachel-Container - 3 Buttons oben, 2 Buttons unten (links, gleiche Breite) */
.filter-contango__quickselect-options {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.375rem;
}

/* Erste Reihe: 3 Buttons je 2 Spalten */
.filter-contango__radio:nth-child(1),
.filter-contango__radio:nth-child(2),
.filter-contango__radio:nth-child(3) {
    grid-column: span 2;
}

/* Zweite Reihe: 2 Buttons links (gleiche Breite wie oben) */
.filter-contango__radio:nth-child(4) {
    grid-column: 1 / 3;
}

.filter-contango__radio:nth-child(5) {
    grid-column: 3 / 5;
}

/* Kachel-Design */
.filter-contango__radio {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.25rem;
    border: 1px solid var(--ofma-color-slate-200);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    background: var(--ofma-color-slate-50);
    text-align: center;
}

.filter-contango__radio:hover {
    background: var(--ofma-color-slate-100);
    border-color: var(--ofma-color-slate-300);
}

.filter-contango__radio input[type="radio"] {
    display: none;
}

.filter-contango__radio-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ofma-color-slate-700);
}

/* =====================================================
   CONTANGO FARBLEGENDE (v3.2.0) - Stillhalter-Perspektive
   Backwardation (negativ) = SICHER | Contango (positiv) = VORSICHT
   ===================================================== */

/* Backwardation < -1%: SICHER (gr&uuml;n) */
.filter-contango__radio--bearish {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.08);
}

.filter-contango__radio--bearish .filter-contango__radio-label {
    color: #059669;
}

/* Leichte Backwardation -1 bis -0.5%: GUT (blau) */
.filter-contango__radio--slight-bear {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

.filter-contango__radio--slight-bear .filter-contango__radio-label {
    color: #2563eb;
}

/* Neutral -0.5 bis 0.5%: NEUTRAL (grau) */
.filter-contango__radio--neutral {
    border-color: var(--ofma-color-slate-400);
    background: rgba(100, 116, 139, 0.08);
}

.filter-contango__radio--neutral .filter-contango__radio-label {
    color: var(--ofma-color-slate-600);
    font-weight: 600;
}

/* Leichtes Contango 0.5 bis 1%: ACHTUNG (gelb) */
.filter-contango__radio--slight-bull {
    border-color: #ca8a04;
    background: rgba(202, 138, 4, 0.08);
}

.filter-contango__radio--slight-bull .filter-contango__radio-label {
    color: #ca8a04;
}

/* Contango > 1%: VORSICHT (orange) */
.filter-contango__radio--bullish {
    border-color: #ea580c;
    background: rgba(234, 88, 12, 0.08);
}

.filter-contango__radio--bullish .filter-contango__radio-label {
    color: #ea580c;
}

/* EINHEITLICHER Hover - grau f&uuml;r ALLE */
.filter-contango__radio:hover {
    background: var(--ofma-color-slate-200) !important;
    border-color: var(--ofma-color-slate-400) !important;
}

/* Checked States mit Farben */
/* Checked States - behalten eigene Button-Farbe */
.filter-contango__radio--bearish:has(input:checked) {
    background: rgba(5, 150, 105, 0.2);
    box-shadow: inset 0 0 0 2px #059669;
}

.filter-contango__radio--bearish:has(input:checked) .filter-contango__radio-label {
    color: #059669;
}

.filter-contango__radio--slight-bear:has(input:checked) {
    background: rgba(37, 99, 235, 0.2);
    box-shadow: inset 0 0 0 2px #2563eb;
}

.filter-contango__radio--slight-bear:has(input:checked) .filter-contango__radio-label {
    color: #2563eb;
}

.filter-contango__radio--neutral:has(input:checked) {
    background: rgba(100, 116, 139, 0.2);
    box-shadow: inset 0 0 0 2px var(--ofma-color-slate-500);
}

.filter-contango__radio--neutral:has(input:checked) .filter-contango__radio-label {
    color: var(--ofma-color-slate-600);
}

.filter-contango__radio--slight-bull:has(input:checked) {
    background: rgba(202, 138, 4, 0.2);
    box-shadow: inset 0 0 0 2px #ca8a04;
}

.filter-contango__radio--slight-bull:has(input:checked) .filter-contango__radio-label {
    color: #ca8a04;
}

.filter-contango__radio--bullish:has(input:checked) {
    background: rgba(234, 88, 12, 0.2);
    box-shadow: inset 0 0 0 2px #ea580c;
}

.filter-contango__radio--bullish:has(input:checked) .filter-contango__radio-label {
    color: #ea580c;
}

/* =====================================================
   CONTANGO LEGENDE - Exakte Button-Farben
   ===================================================== */

.filter-quickselect__legend--contango {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--ofma-color-slate-200);
}

.filter-quickselect__legend--contango .filter-quickselect__legend-item {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
}

/* Sicher = Gr&uuml;n */
.filter-quickselect__legend--contango .filter-quickselect__legend-item--success {
    color: #059669;
}

/* Gut = Blau */
.filter-quickselect__legend--contango .filter-quickselect__legend-item--blue {
    color: #2563eb;
}

/* Neutral = Grau */
.filter-quickselect__legend--contango .filter-quickselect__legend-item--neutral {
    color: var(--ofma-color-slate-600);
}

/* Achtung = Gelb */
.filter-quickselect__legend--contango .filter-quickselect__legend-item--warning-yellow {
    color: #ca8a04;
}

/* Vorsicht = Orange */
.filter-quickselect__legend--contango .filter-quickselect__legend-item--warning {
    color: #ea580c;
}

/* Hinweistext MIT Zeilenumbruch */
.filter-contango__hint {
    font-size: 0.6875rem;
    color: var(--ofma-color-info, #3b82f6);
    margin-top: 0.75rem;
    padding: 0.375rem 0.5rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--ofma-radius-sm);
    line-height: 1.4;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.filter-contango__hint-icon {
    font-size: 0.75rem;
}

/* Dark Mode - Contango Filter */
[data-theme="dark"] .filter-contango__label {
    color: var(--ofma-color-slate-300);
}

[data-theme="dark"] .filter-contango__quickselect {
    border-top-color: var(--ofma-color-slate-600);
}

[data-theme="dark"] .filter-contango__quickselect-label {
    color: var(--ofma-color-slate-400);
}

[data-theme="dark"] .filter-contango__radio {
    background: var(--ofma-color-slate-700);
    border-color: var(--ofma-color-slate-600);
}

[data-theme="dark"] .filter-contango__radio:hover {
    background: var(--ofma-color-slate-600);
    border-color: var(--ofma-color-slate-500);
}

[data-theme="dark"] .filter-contango__radio-label {
    color: var(--ofma-color-slate-200);
}

/* Dark Mode - Contango Farblegende */
[data-theme="dark"] .filter-contango__radio--bearish {
    background: rgba(5, 150, 105, 0.15);
    border-color: #10b981;
}

[data-theme="dark"] .filter-contango__radio--bearish .filter-contango__radio-label {
    color: #34d399;
}

[data-theme="dark"] .filter-contango__radio--slight-bear {
    background: rgba(37, 99, 235, 0.15);
    border-color: #3b82f6;
}

[data-theme="dark"] .filter-contango__radio--slight-bear .filter-contango__radio-label {
    color: #60a5fa;
}

[data-theme="dark"] .filter-contango__radio--neutral {
    border-color: var(--ofma-color-slate-500);
    background: rgba(100, 116, 139, 0.15);
}

[data-theme="dark"] .filter-contango__radio--neutral .filter-contango__radio-label {
    color: var(--ofma-color-slate-400);
}

[data-theme="dark"] .filter-contango__radio--slight-bull {
    background: rgba(202, 138, 4, 0.15);
    border-color: #eab308;
}

[data-theme="dark"] .filter-contango__radio--slight-bull .filter-contango__radio-label {
    color: #facc15;
}

[data-theme="dark"] .filter-contango__radio--bullish {
    background: rgba(234, 88, 12, 0.15);
    border-color: #f97316;
}

[data-theme="dark"] .filter-contango__radio--bullish .filter-contango__radio-label {
    color: #fb923c;
}

/* Dark Mode Checked States */
[data-theme="dark"] .filter-contango__radio--bearish:has(input:checked) {
    background: rgba(5, 150, 105, 0.3);
    box-shadow: inset 0 0 0 2px #34d399;
}

[data-theme="dark"] .filter-contango__radio--bearish:has(input:checked) .filter-contango__radio-label {
    color: #34d399;
}

[data-theme="dark"] .filter-contango__radio--slight-bear:has(input:checked) {
    background: rgba(37, 99, 235, 0.3);
    box-shadow: inset 0 0 0 2px #60a5fa;
}

[data-theme="dark"] .filter-contango__radio--slight-bear:has(input:checked) .filter-contango__radio-label {
    color: #60a5fa;
}

[data-theme="dark"] .filter-contango__radio--neutral:has(input:checked) {
    background: rgba(100, 116, 139, 0.3);
    box-shadow: inset 0 0 0 2px var(--ofma-color-slate-400);
}

[data-theme="dark"] .filter-contango__radio--neutral:has(input:checked) .filter-contango__radio-label {
    color: var(--ofma-color-slate-300);
}

[data-theme="dark"] .filter-contango__radio--slight-bull:has(input:checked) {
    background: rgba(202, 138, 4, 0.3);
    box-shadow: inset 0 0 0 2px #facc15;
}

[data-theme="dark"] .filter-contango__radio--slight-bull:has(input:checked) .filter-contango__radio-label {
    color: #facc15;
}

[data-theme="dark"] .filter-contango__radio--bullish:has(input:checked) {
    background: rgba(234, 88, 12, 0.3);
    box-shadow: inset 0 0 0 2px #fb923c;
}

[data-theme="dark"] .filter-contango__radio--bullish:has(input:checked) .filter-contango__radio-label {
    color: #fb923c;
}

/* Dark Mode - Contango Legende */
[data-theme="dark"] .filter-quickselect__legend--contango {
    border-top-color: var(--ofma-color-slate-600);
}

[data-theme="dark"] .filter-quickselect__legend--contango .filter-quickselect__legend-item--success {
    color: #34d399;
}

[data-theme="dark"] .filter-quickselect__legend--contango .filter-quickselect__legend-item--blue {
    color: #60a5fa;
}

[data-theme="dark"] .filter-quickselect__legend--contango .filter-quickselect__legend-item--neutral {
    color: var(--ofma-color-slate-400);
}

[data-theme="dark"] .filter-quickselect__legend--contango .filter-quickselect__legend-item--warning-yellow {
    color: #facc15;
}

[data-theme="dark"] .filter-quickselect__legend--contango .filter-quickselect__legend-item--warning {
    color: #fb923c;
}

[data-theme="dark"] .filter-contango__hint {
    background: rgba(59, 130, 246, 0.15);
    color: var(--ofma-color-info-light, #60a5fa);
}

/* =====================================================
   AVG OPT VOLUME FILTER (v4.37.0)
   ===================================================== */

.filter-avgvol {
    padding: 8px 0;
}

.filter-avgvol__label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.filter-avgvol__quickselect {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.filter-avgvol__quickselect-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
}

.filter-avgvol__quickselect-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.filter-avgvol__radio {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.filter-avgvol__radio input {
    display: none;
}

.filter-avgvol__radio-label {
    display: block;
    width: 100%;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.15s ease;
    border: 1px solid transparent;
}

/* Excellent >= 50K - Dunkelgr&uuml;n */
.filter-avgvol__radio--excellent .filter-avgvol__radio-label {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    border-color: rgba(5, 150, 105, 0.3);
}

.filter-avgvol__radio--excellent:hover .filter-avgvol__radio-label,
.filter-avgvol__radio--excellent:has(input:checked) .filter-avgvol__radio-label {
    background: rgba(5, 150, 105, 0.2);
    box-shadow: inset 0 0 0 2px #059669;
}

/* Good >= 10K - Gr&uuml;n */
.filter-avgvol__radio--good .filter-avgvol__radio-label {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

.filter-avgvol__radio--good:hover .filter-avgvol__radio-label,
.filter-avgvol__radio--good:has(input:checked) .filter-avgvol__radio-label {
    background: rgba(16, 185, 129, 0.2);
    box-shadow: inset 0 0 0 2px #10b981;
}

/* Acceptable >= 1K - Gelb */
.filter-avgvol__radio--acceptable .filter-avgvol__radio-label {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.3);
}

.filter-avgvol__radio--acceptable:hover .filter-avgvol__radio-label,
.filter-avgvol__radio--acceptable:has(input:checked) .filter-avgvol__radio-label {
    background: rgba(245, 158, 11, 0.2);
    box-shadow: inset 0 0 0 2px #f59e0b;
}

/* Legende */
.filter-quickselect__legend--avgvol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
}

.filter-quickselect__legend--avgvol .filter-quickselect__legend-item::before {
    display: none;
}

.legend-swatch--avgvol-excellent {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 4px;
    background: #059669;
}

.legend-swatch--avgvol-good {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 4px;
    background: #10b981;
}

.legend-swatch--avgvol-acceptable {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 4px;
    background: #f59e0b;
}

/* Hint */
.filter-avgvol__hint {
    margin-top: 12px;
    padding: 8px 10px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 6px;
    font-size: 0.7rem;
    color: #3b82f6;
    line-height: 1.4;
}

.filter-avgvol__hint-icon {
    font-size: 0.9rem;
    margin-right: 4px;
}

/* Dark Mode - Avg Vol */
[data-theme="dark"] .filter-avgvol__label,
[data-theme="dark"] .filter-avgvol__quickselect-label {
    color: #94a3b8;
}

[data-theme="dark"] .filter-avgvol__quickselect {
    border-top-color: #334155;
}

[data-theme="dark"] .filter-avgvol__radio--excellent .filter-avgvol__radio-label {
    background: rgba(5, 150, 105, 0.2);
    color: #34d399;
    border-color: rgba(5, 150, 105, 0.4);
}

[data-theme="dark"] .filter-avgvol__radio--good .filter-avgvol__radio-label {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.4);
}

[data-theme="dark"] .filter-avgvol__radio--acceptable .filter-avgvol__radio-label {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.4);
}

[data-theme="dark"] .filter-quickselect__legend--avgvol {
    border-top-color: #334155;
}

[data-theme="dark"] .filter-avgvol__hint {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

/* =====================================================
   PUT/CALL RATIO FILTER (v4.37.0)
   ===================================================== */

.filter-pcr {
    padding: 8px 0;
}

.filter-pcr__label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.filter-pcr__quickselect {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.filter-pcr__quickselect-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
}

.filter-pcr__quickselect-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.filter-pcr__radio {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.filter-pcr__radio input {
    display: none;
}

.filter-pcr__radio-label {
    display: block;
    width: 100%;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.15s ease;
    border: 1px solid transparent;
}

/* Bullish < 0.8 - Gr&uuml;n */
.filter-pcr__radio--bullish .filter-pcr__radio-label {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

.filter-pcr__radio--bullish:hover .filter-pcr__radio-label,
.filter-pcr__radio--bullish:has(input:checked) .filter-pcr__radio-label {
    background: rgba(16, 185, 129, 0.2);
    box-shadow: inset 0 0 0 2px #10b981;
}

/* Neutral 0.8-1.2 - Grau */
.filter-pcr__radio--neutral .filter-pcr__radio-label {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
    border-color: rgba(100, 116, 139, 0.3);
}

.filter-pcr__radio--neutral:hover .filter-pcr__radio-label,
.filter-pcr__radio--neutral:has(input:checked) .filter-pcr__radio-label {
    background: rgba(100, 116, 139, 0.2);
    box-shadow: inset 0 0 0 2px #64748b;
}

/* Bearish > 1.2 - Rot */
.filter-pcr__radio--bearish .filter-pcr__radio-label {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.3);
}

.filter-pcr__radio--bearish:hover .filter-pcr__radio-label,
.filter-pcr__radio--bearish:has(input:checked) .filter-pcr__radio-label {
    background: rgba(239, 68, 68, 0.2);
    box-shadow: inset 0 0 0 2px #ef4444;
}

/* Legende */
.filter-quickselect__legend--pcr {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
}

.filter-quickselect__legend--pcr .filter-quickselect__legend-item::before {
    display: none;
}

.legend-swatch--pcr-bullish {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 4px;
    background: #10b981;
}

.legend-swatch--pcr-neutral {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 4px;
    background: #64748b;
}

.legend-swatch--pcr-bearish {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 4px;
    background: #ef4444;
}

/* Hint */
.filter-pcr__hint {
    margin-top: 12px;
    padding: 8px 10px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 6px;
    font-size: 0.7rem;
    color: #3b82f6;
    line-height: 1.4;
}

.filter-pcr__hint-icon {
    font-size: 0.9rem;
    margin-right: 4px;
}

/* Dark Mode - P/C Ratio */
[data-theme="dark"] .filter-pcr__label,
[data-theme="dark"] .filter-pcr__quickselect-label {
    color: #94a3b8;
}

[data-theme="dark"] .filter-pcr__quickselect {
    border-top-color: #334155;
}

[data-theme="dark"] .filter-pcr__radio--bullish .filter-pcr__radio-label {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.4);
}

[data-theme="dark"] .filter-pcr__radio--neutral .filter-pcr__radio-label {
    background: rgba(100, 116, 139, 0.2);
    color: #94a3b8;
    border-color: rgba(100, 116, 139, 0.4);
}

[data-theme="dark"] .filter-pcr__radio--bearish .filter-pcr__radio-label {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.4);
}

[data-theme="dark"] .filter-quickselect__legend--pcr {
    border-top-color: #334155;
}

[data-theme="dark"] .filter-pcr__hint {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}