@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');/* TradingChart */

._wrapper_15v6c_3 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

._chart_15v6c_12 {
    flex: 1;
    width: 100%;
    min-height: 0;
    position: relative;
    background: transparent;
}

._toolbar_15v6c_20 {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
}

._chartControls_15v6c_30 {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
}

._volatilityBadge_15v6c_40 {
    background: rgba(22, 27, 34, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

._volatilityBadge_15v6c_40:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 36, 44, 0.9);
}

._volLabel_15v6c_58 {
    font-size: 10px;
    color: var(--text-muted, #8b949e);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

._volValue_15v6c_66 {
    font-size: 12px;
    font-weight: 700;
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
}

._volLow_15v6c_75 {
    color: #3b82f6;
    /* Blue for low vol */
}

._volMed_15v6c_80 {
    color: #10b981;
    /* Green for medium vol */
}

._volHigh_15v6c_85 {
    color: #f59e0b;
    /* Orange/Yellow for high vol */
}

/* Countdown */
._countdownWrapper_15v6c_91 {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(22, 27, 34, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    user-select: none;
    transition: all 0.3s ease;
}

._countdownWrapper_15v6c_91:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 36, 44, 0.9);
}

._countdownIcon_15v6c_110 {
    color: var(--text-muted, #8b949e);
}

._countdownValue_15v6c_114 {
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary, #c9d1d9);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

._countdownUrgent_15v6c_123 {
    color: #f59e0b;
}

._countdownDanger_15v6c_127 {
    color: #ef4444;
    animation: _flashDanger_15v6c_1 1s ease-in-out infinite;
}

@keyframes _flashDanger_15v6c_1 {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

._tfBadge_15v6c_143 {
    background: rgba(22, 27, 34, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(88, 166, 255, 0.3); /* Subtle blue accent */
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    user-select: none;
    transition: all 0.3s ease;
}

._tfBadge_15v6c_143:hover {
    border-color: rgba(88, 166, 255, 0.5);
    background: rgba(30, 36, 44, 0.9);
    transform: translateY(-1px);
}

._tfBadgeOpen_15v6c_163 {
    border-color: var(--accent-primary, #58a6ff);
    background: rgba(30, 36, 44, 1);
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.2);
}

._tfContainer_15v6c_169 {
    position: relative;
    cursor: pointer;
}

._tfDropdown_15v6c_174 {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    min-width: 80px;
    z-index: 1000;
    animation: _slideDown_15v6c_1 0.2s ease-out;
}

@keyframes _slideDown_15v6c_1 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

._tfOption_15v6c_203 {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary, #c9d1d9);
    transition: all 0.2s ease;
    text-align: center;
}

._tfOption_15v6c_203:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

._tfOptionActive_15v6c_218 {
    background: rgba(88, 166, 255, 0.15);
    color: #58a6ff;
}

._tfLabel_15v6c_223 {
    font-size: 10px;
    color: #58a6ff; /* Primary accent color */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

._tfValue_15v6c_231 {
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
}

._dragToggle_15v6c_238 {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 27, 34, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid #30363d;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    padding: 0;
}

._dragToggle_15v6c_238:hover {
    background: rgba(48, 54, 61, 0.8);
    border-color: #58a6ff;
    transform: translateY(-1px);
}

._dragToggle_15v6c_238._active_15v6c_261 {
    background: rgba(35, 134, 54, 0.2);
    border-color: #238636;
    box-shadow: 0 0 10px rgba(35, 134, 54, 0.3);
}

._dragToggle_15v6c_238._active_15v6c_261:hover {
    background: rgba(35, 134, 54, 0.3);
}

/* Loading Overlay */
._loadingOverlay_15v6c_272 {
    position: absolute;
    inset: 0;
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: opacity 0.3s ease;
}

._spinner_15v6c_284 {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(88, 166, 255, 0.2);
    border-top-color: #58a6ff;
    border-radius: 50%;
    animation: _spin_15v6c_284 1s linear infinite;
}

@keyframes _spin_15v6c_284 {
    to { transform: rotate(360deg); }
}

._candleCounter_15v6c_297 {
    position: absolute;
    top: 0;
    z-index: 1000;
    background: #2962FF;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 0 0 4px 4px;
    pointer-events: none;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    border-top: none;
    transition: opacity 0.1s ease;
}._container_b2awt_1 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 120px;
    width: 60px;
    pointer-events: none;
    z-index: 10;
}

._segment_b2awt_11 {
    position: absolute;
    right: 15px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s linear;
    pointer-events: auto; /* Enable interaction */
    cursor: pointer; /* Feedback for clickable/draggable */
}

._segment_b2awt_11:hover {
    filter: brightness(1.2); /* Visual hover feedback */
}

._preview_b2awt_27 {
    opacity: 0.4; /* More transparent when no position */
}

._line_b2awt_31 {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 10px;
    width: 1px;
    background: currentColor;
    border-radius: 1px;
}

._bracketTop_b2awt_41,
._bracketBottom_b2awt_42 {
    position: absolute;
    left: 4px;
    width: 14px;
    height: 1px;
    background: currentColor;
    border-radius: 1px;
}

._bracketTop_b2awt_41 {
    top: 0;
}

._bracketBottom_b2awt_42 {
    bottom: 0;
}

._tpSegment_b2awt_59 {
    color: #10b981;
}

._slSegment_b2awt_63 {
    color: #ef4444;
}

/* Subtle glow/gradient for the line */
._tpSegment_b2awt_59 ._line_b2awt_31 {
    background: linear-gradient(to bottom, transparent, #10b981, transparent);
}

._slSegment_b2awt_63 ._line_b2awt_31 {
    background: linear-gradient(to bottom, transparent, #ef4444, transparent);
}

._label_b2awt_76 {
    position: absolute;
    left: 45px; /* Offset to the right of the ruler line */
    /* top will be set via inline styles in TSX */
    transform: translateY(-50%); /* Center vertically on the line */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align for horizontal label */
    gap: 1px;
    white-space: nowrap;
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    background: rgba(15, 15, 15, 0.9);
    padding: 3px 6px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
    pointer-events: none; /* Critical: don't block chart/axis interaction */
}

._labelHeader_b2awt_98 {
    display: flex;
    align-items: center;
    gap: 6px;
}

._type_b2awt_104 {
    font-size: 9px;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 3px;
    border-radius: 2px;
    text-transform: uppercase;
}

._price_b2awt_113 {
    font-size: 11px;
    color: #fff;
}

._pnl_b2awt_118 {
    font-size: 9px;
    font-weight: 600;
}

._pnlPositive_b2awt_123, ._pctPositive_b2awt_123 { color: #00E676; }
._pnlNegative_b2awt_124, ._pctNegative_b2awt_124 { color: #FF1744; }

._pct_b2awt_123 {
    font-size: 9px;
    font-weight: 800;
}/* ConfirmDialog */

._backdrop_1tmn0_3 {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9998;
}

._dialogWrapper_1tmn0_11 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

._dialog_1tmn0_11 {
    position: relative;
    width: 360px;
    max-width: 90vw;
    background-color: #1c1c1e;
    border: 1px solid #3a3a3c;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6);
}

/* Variant glows */
._glowDanger_1tmn0_33 {
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(239, 68, 68, 0.2);
}

._glowWarning_1tmn0_37 {
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(234, 179, 8, 0.2);
}

._glowDefault_1tmn0_41 {
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(59, 130, 246, 0.2);
}

._header_1tmn0_45 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

._icon_1tmn0_52 {
    font-size: 22px;
}

._title_1tmn0_56 {
    font-size: 16px;
    font-weight: 700;
    color: #f5f5f7;
    margin: 0;
    letter-spacing: -0.2px;
}

._message_1tmn0_64 {
    font-size: 13px;
    color: #a1a1a6;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

._actions_1tmn0_71 {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Buttons */
._btn_1tmn0_78 {
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
    border: none;
}

._btnCancel_1tmn0_86 {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #d1d1d6;
    background-color: #2c2c2e;
    border: 1px solid #48484a;
}

._btnCancel_1tmn0_86:hover {
    background-color: #3a3a3c;
    color: #fff;
}

._btnConfirm_1tmn0_101 {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Variant buttons */
._btnDanger_1tmn0_110 {
    color: #fff;
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

._btnWarning_1tmn0_116 {
    color: #000;
    background: linear-gradient(180deg, #eab308 0%, #ca8a04 100%);
}

._btnDefault_1tmn0_122 {
    color: #fff;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}._wrapper_22grs_1 {
    position: relative;
    display: inline-block;
    z-index: 50;
    font-family: 'Inter', sans-serif;
    user-select: none;
}

._wrapperOpen_22grs_9 {
    position: relative;
    display: inline-block;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    user-select: none;
}

/* Trigger Button */
._trigger_22grs_18 {
    background: rgba(18, 18, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Darker border */
    border-radius: 6px;
    height: 32px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
    justify-content: space-between;
}

._trigger_22grs_18:hover {
    background: rgba(255, 255, 255, 0.05);
    /* Slight light on hover */
    border-color: rgba(255, 255, 255, 0.15);
}

._triggerOpen_22grs_40 {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(50, 200, 255, 0.15);
    /* Focus ring */
}

/* Content inside Trigger */
._triggerContent_22grs_49 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

._triggerLabel_22grs_56 {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

._triggerValue_22grs_64 {
    font-size: 13px;
    font-weight: 600;
    color: #e0e0e0;
}

._arrow_22grs_70 {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease;
}

._triggerOpen_22grs_40 ._arrow_22grs_70 {
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.8);
}

/* Dropdown Menu */
._dropdown_22grs_82 {
    width: 140px;
    max-height: 300px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05); /* Enhanced shadow for portal */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: _slideIn_22grs_1 0.15s cubic-bezier(0.2, 0, 0.2, 1);
}

._dropdownUp_22grs_95 {
    animation: _slideInUp_22grs_1 0.15s cubic-bezier(0.2, 0, 0.2, 1);
    transform-origin: bottom center;
}

@keyframes _slideIn_22grs_1 {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes _slideInUp_22grs_1 {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* List */
._list_22grs_125 {
    list-style: none;
    margin: 0;
    padding: 4px;
    overflow-y: auto;
    max-height: 240px;
}

/* Scrollbar */
._list_22grs_125::-webkit-scrollbar {
    width: 4px;
}

._list_22grs_125::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* Items */
._item_22grs_144 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

._item_22grs_144:hover {
    background: rgba(255, 255, 255, 0.06);
}

._itemSelected_22grs_158 {
    background: rgba(50, 200, 255, 0.1);
}

._itemSelected_22grs_158 ._itemLabel_22grs_163 {
    color: inherit;
    font-weight: 700;
}

._itemLabel_22grs_163 {
    font-size: 13px;
    color: inherit;
    font-weight: 500;
}

._item_22grs_144:hover ._itemLabel_22grs_163 {
    color: inherit;
}

/* Backdrop */
._backdrop_22grs_179 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background: transparent;
}._overlay_149yo_1 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

._modal_149yo_12 {
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 360px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

._header_149yo_23 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

._header_149yo_23 h3 {
    margin: 0;
    font-size: 16px;
    color: #e0e0e0;
    font-weight: 600;
}

._closeBtn_149yo_38 {
    background: none;
    border: none;
    color: #888;
    font-size: 22px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

._closeBtn_149yo_38:hover {
    color: #fff;
}

/* Step 1: Type Grid */
._typeGrid_149yo_54 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 16px;
}

._typeBtn_149yo_61 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s;
}

._typeBtn_149yo_61:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    color: #fff;
    transform: translateY(-1px);
}

._typeName_149yo_83 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

._typeDesc_149yo_89 {
    font-size: 10px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Step 2: Config Form */
._configForm_149yo_97 {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

._label_149yo_104 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

._input_149yo_114 {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 10px;
    color: #e0e0e0;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

._input_149yo_114:focus {
    border-color: rgba(99, 102, 241, 0.5);
}

._actions_149yo_129 {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

._backBtn_149yo_135 {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #aaa;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

._backBtn_149yo_135:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

._submitBtn_149yo_152 {
    flex: 2;
    padding: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.4));
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

/* ── Momentum Confirmations ── */
._confirmationSection_149yo_166 {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

._confirmationHeader_149yo_175 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

._confirmationTitle_149yo_181 {
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
}

._confirmationHint_149yo_187 {
    font-size: 10px;
    color: #888;
}

._confirmationCard_149yo_192 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

._confirmationCardHeader_149yo_203 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

._confirmationCardHeader_149yo_203 select {
    flex: 1;
    font-weight: 600;
}

._removeBtn_149yo_215 {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

._removeBtn_149yo_215:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #fff;
}

._confirmationRow_149yo_235 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

._addConfirmationBtns_149yo_241 {
    display: flex;
    gap: 8px;
}

._addConfBtn_149yo_246 {
    flex: 1;
    padding: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #999;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

._addConfBtn_149yo_246:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    color: #fff;
}

/* ── Color + Order Mode row ── */
._colorModeRow_149yo_265 {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

._colorLabel_149yo_271 {
    flex: 1;
}

._modeLabel_149yo_275 {
    flex: 2;
}

._colorPickerWrap_149yo_279 {
    display: flex;
    align-items: center;
    gap: 8px;
}

._colorInput_149yo_285 {
    width: 40px;
    height: 32px;
    padding: 2px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 4px;
}

._colorHex_149yo_295 {
    font-family: monospace;
    font-size: 12px;
    color: #888;
}._container_4qtuz_1 {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    height: auto;
    max-height: 85vh;
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
    min-width: 340px;
}

._collapsed_4qtuz_31 {
    max-height: 48px;
    padding-bottom: 0;
    overflow: hidden;
}

/* --- Segmented Control --- */
._segmentControl_4qtuz_45 {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    padding: 3px;
    border-radius: var(--radius-md);
    gap: 4px;
    position: relative;
    border: 1px solid var(--border-subtle);
}

._segmentBtn_4qtuz_65 {
    flex: 1;
    padding: 8px 4px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
}

._segmentActive_4qtuz_93 {
    background: var(--bg-elevated);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

._collapseIcon_4qtuz_105 {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

._unlockBtn_4qtuz_127 {
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    padding: 2px 6px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #58a6ff;
    transition: all 0.2s;
}

._unlockBtn_4qtuz_127:hover {
    background: rgba(88, 166, 255, 0.2);
    border-color: #58a6ff;
    transform: scale(1.1);
}

._mainActionsRow_4qtuz_167 {
    grid-column: span 2;
    display: flex;
    align-items: stretch;
    gap: 6px;
    width: 100%;
}

._unlockBtnInline_4qtuz_183 {
    padding: 0 12px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-subtle);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

._unlockBtnInline_4qtuz_183:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* --- Content Layout --- */
._content_4qtuz_215 {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    animation: _fadeIn_4qtuz_1 0.3s ease-out;
}

/* --- Settings Card --- */
._settingsCard_4qtuz_231 {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

._settingsRow_4qtuz_251 {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

._compactDropdown_4qtuz_263 {
    flex: 1;
}

._autoBadge_4qtuz_271 {
    flex: 2;
    background: rgba(41, 98, 255, 0.1);
    border: 1px dashed rgba(41, 98, 255, 0.4);
    color: #58a6ff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 6px;
    height: 32px;
    white-space: nowrap;
}

/* Toggle Switch Styles */
._toggleLabel_4qtuz_307 {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    margin-left: 8px;
    flex-shrink: 0;
}

._toggleInput_4qtuz_325 {
    opacity: 0;
    width: 0;
    height: 0;
}

._toggleSlider_4qtuz_337 {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

._toggleSlider_4qtuz_337:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: #8b949e;
    transition: .4s;
    border-radius: 50%;
}

._toggleInput_4qtuz_325:checked + ._toggleSlider_4qtuz_337 {
    background-color: rgba(41, 98, 255, 0.2);
    border-color: rgba(41, 98, 255, 0.4);
}

._toggleInput_4qtuz_325:checked + ._toggleSlider_4qtuz_337:before {
    transform: translateX(16px);
    background-color: #58a6ff;
}

._inputWrapper_4qtuz_407 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

._inputLabel_4qtuz_421 {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 2px;
}

._priceInput_4qtuz_435 {
    width: 100%;
    background: var(--bg-app);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    transition: all 0.2s;
}

._priceInput_4qtuz_435:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

/* --- Manual Grid --- */
._manualGrid_4qtuz_473 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

._btnBase_4qtuz_485 {
    padding: 10px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.02em;
}

._actionBuy_4qtuz_517 {
    padding: 14px 8px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    flex: 1;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    min-width: 0;
}

._actionSell_4qtuz_559 {
    padding: 14px 8px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    flex: 1;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
    min-width: 0;
}

._actionJoinBuy_4qtuz_601 {
    padding: 10px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.02em;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

._actionJoinSell_4qtuz_637 {
    padding: 10px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.02em;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

._actionFlatten_4qtuz_673 {
    padding: 10px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.02em;
    background: rgba(161, 161, 170, 0.1);
    color: var(--text-secondary);
    grid-column: span 2;
    margin-top: 4px;
}

._btnBase_4qtuz_485:hover:not(:disabled),
._actionBuy_4qtuz_517:hover:not(:disabled),
._actionSell_4qtuz_559:hover:not(:disabled),
._actionJoinBuy_4qtuz_601:hover:not(:disabled),
._actionJoinSell_4qtuz_637:hover:not(:disabled),
._actionFlatten_4qtuz_673:hover:not(:disabled) {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

._actionBuy_4qtuz_517:active, ._actionSell_4qtuz_559:active, ._actionJoinBuy_4qtuz_601:active, ._actionJoinSell_4qtuz_637:active, ._actionFlatten_4qtuz_673:active {
    transform: translateY(0);
}

._joinActionsRow_4qtuz_741 {
    display: flex;
    gap: 12px;
    width: 100%;
}

._actionJoinBuyLarge_4qtuz_753 {
    flex: 1;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    transition: all 0.2s ease;
}

._actionJoinBuyLarge_4qtuz_753:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

._actionJoinSellLarge_4qtuz_791 {
    flex: 1;
    background: linear-gradient(135deg, #ff1744 0%, #f44336 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
    transition: all 0.2s ease;
}

._actionFlattenCompact_4qtuz_819 {
    background: rgba(255, 23, 68, 0.1);
    color: #ff1744;
    border: 1px solid rgba(255, 23, 68, 0.3);
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
}

._actionFlattenCompact_4qtuz_819:hover {
    background: #ff1744;
    color: white;
}

._actionUnlock_4qtuz_861 {
    background: rgba(41, 98, 255, 0.1);
    color: #2962FF;
    border: 1px solid rgba(41, 98, 255, 0.3);
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
}

._actionUnlock_4qtuz_861:hover {
    background: #2962FF;
    color: white;
}

._actionBuy_4qtuz_517:disabled, ._actionSell_4qtuz_559:disabled, ._actionJoinBuy_4qtuz_601:disabled, ._actionJoinSell_4qtuz_637:disabled, ._actionFlatten_4qtuz_673:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

/* --- Algo Layout --- */
._algoLayout_4qtuz_917 {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

._strategySettings_4qtuz_929 {
    display: flex;
    gap: var(--space-sm);
}

._strategySettings_4qtuz_929 > div {
    flex: 1;
}

._indicatorGrid_4qtuz_947 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 380px; 
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* Thin Scrollbar for Chrome/Safari/Edge */
._indicatorGrid_4qtuz_947::-webkit-scrollbar {
    width: 4px;
}

._indicatorGrid_4qtuz_947::-webkit-scrollbar-track {
    background: transparent;
}

._indicatorGrid_4qtuz_947::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

._indicatorGrid_4qtuz_947::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-height: 700px) {
    ._indicatorGrid_4qtuz_947 {
        max-height: 220px;
    }
}

._indicatorCard_4qtuz_1019 {
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

._indicatorCard_4qtuz_1019:hover {
    background: rgba(255, 255, 255, 0.04);
}

._indicatorHeader_4qtuz_1047 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
}

._indicatorInfo_4qtuz_1061 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

._indicatorName_4qtuz_1073 {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-primary);
}

._indicatorPrice_4qtuz_1085 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
}

._indicatorActions_4qtuz_1099 {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-shrink: 0;
}

._indicatorActionBase_4qtuz_1113 {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.15s;
}

._indicatorActionBuy_4qtuz_1133 {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.15s;
    background: var(--color-up-dim);
    color: var(--color-up);
}

._indicatorActionSell_4qtuz_1157 {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.15s;
    background: var(--color-down-dim);
    color: var(--color-down);
}

._indicatorActionExit_4qtuz_1181 {
    padding: 4px 6px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.15s;
    background: rgba(88, 166, 255, 0.1);
    color: #58a6ff;
}

._indicatorActionBuy_4qtuz_1133:hover, ._indicatorActionSell_4qtuz_1157:hover, ._indicatorActionExit_4qtuz_1181:hover {
    filter: brightness(1.2);
}

/* Distance Bar */
._distanceBarWrapper_4qtuz_1215 {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    margin: 0 10px 8px;
    border-radius: 2px;
    overflow: visible;
    display: flex;
    align-items: center;
}

._distanceBar_4qtuz_1215 {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease;
}

._distAbove_4qtuz_1249 { background: var(--color-up); }
._distBelow_4qtuz_1251 { background: var(--color-down); }

._distanceLabel_4qtuz_1255 {
    position: absolute;
    right: 0;
    top: -14px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
}

._beCard_4qtuz_1273 {
    background: rgba(0, 255, 255, 0.03);
}

._activeCard_4qtuz_1281 {
    border: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

._activeExitBtn_4qtuz_1291 {
    background: var(--accent-primary) !important;
    color: white !important;
    box-shadow: 0 0 8px var(--accent-glow);
}

/* --- Algo Rules (Human-Readable) --- */
._rulesSection_4qtuz_1305 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--space-md);
}

._sectionHeader_4qtuz_1319 {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

._sectionHeader_4qtuz_1319::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

._algoRuleRow_4qtuz_1355 {
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    min-height: 40px;
}

._ruleText_4qtuz_1385 {
    color: var(--text-muted);
}

._indicatorBadge_4qtuz_1393 {
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    border: 1px solid transparent;
    transition: all 0.2s;
    text-transform: uppercase;
}

._inlineDropdown_4qtuz_1413 {
    min-width: 60px;
}

._inlineDropdown_4qtuz_1413 button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 2px 6px;
    height: 24px;
}

._inlineDropdown_4qtuz_1413 .triggerLabel {
    display: none;
}

._inlineDropdown_4qtuz_1413 .triggerValue {
    font-size: 0.7rem;
    font-weight: 700;
}

._indicatorRuleRow_4qtuz_1455 {
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

._indicatorRuleRow_4qtuz_1455:hover {
    background: rgba(255, 255, 255, 0.04);
}

._ruleActions_4qtuz_1489 {
    margin-left: auto;
    display: flex;
    gap: 4px;
    align-items: center;
}

._trashBtn_4qtuz_1503 {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

._trashBtn_4qtuz_1503:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* --- Context Menu --- */
._contextMenuOverlay_4qtuz_1543 {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1000;
}

._contextMenu_4qtuz_1543 {
    position: fixed;
    background: var(--bg-elevated);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    padding: 4px;
    min-width: 120px;
}

._contextMenu_4qtuz_1543 button {
    width: 100%;
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: #ef4444;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

._contextMenu_4qtuz_1543 button:hover {
    background: rgba(239, 68, 68, 0.1);
}

@keyframes _fadeIn_4qtuz_1 {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

._riskSettingsBtn_4qtuz_1617 {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-left: 4px;
}

._riskSettingsBtn_4qtuz_1617:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #0070f3;
}._overlay_1xucq_1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: _fadeIn_1xucq_1 0.2s ease-out;
}

._modal_1xucq_16 {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  color: #eee;
  display: flex;
  flex-direction: column;
  animation: _slideUp_1xucq_1 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

._header_1xucq_31 {
  padding: 1.5rem;
  border-bottom: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._header_1xucq_31 h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

._closeButton_1xucq_49 {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

._closeButton_1xucq_49:hover {
  background: #222;
  color: #fff;
}

._content_1xucq_67 {
  padding: 1.5rem;
}

._grid_1xucq_71 {
  display: grid;
  gap: 1.5rem;
}

._riskSection_1xucq_76 {
  background: #181818;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #222;
}

._riskTitle_1xucq_83 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._volGrid_1xucq_95 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

._volCard_1xucq_101 {
  background: #202020;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #333;
}

._volLabel_1xucq_108 {
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 600;
  text-align: center;
}

._inputs_1xucq_117 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

._inputGroup_1xucq_123 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

._inputGroup_1xucq_123 label {
  font-size: 0.7rem;
  color: #666;
  font-weight: 500;
}

._inputWrapper_1xucq_135 {
  position: relative;
  display: flex;
  align-items: center;
}

._inputWrapper_1xucq_135 input {
  width: 100%;
  background: #111;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  color: #fff;
  font-size: 0.85rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

._inputWrapper_1xucq_135 input:focus {
  outline: none;
  border-color: #0070f3;
}

._inputWrapper_1xucq_135 span {
  position: absolute;
  right: 0.6rem;
  font-size: 0.75rem;
  color: #555;
  pointer-events: none;
}

._footer_1xucq_166 {
  padding: 1.5rem;
  border-top: 1px solid #222;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

._btn_1xucq_174 {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._btnCancel_1xucq_186 {
  background: transparent;
  border: 1px solid #333;
  color: #eee;
}

._btnCancel_1xucq_186:hover {
  background: #222;
}

._btnSave_1xucq_196 {
  background: #0070f3;
  border: 1px solid #0070f3;
  color: #fff;
}

._btnSave_1xucq_196:hover {
  background: #0060d0;
}

._btnSave_1xucq_196:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@keyframes _fadeIn_1xucq_1 {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes _slideUp_1xucq_1 {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* PositionList */

._container_7ulq7_3 {
    flex: 1;
    overflow: auto;
    /* Allow both X and Y scroll */
    min-height: 0;
    width: 100%;
}

._table_7ulq7_11 {
    width: 100%;
    min-width: 600px;
    /* Force scroll on small screens */
    font-size: 10px;
    text-align: left;
    border-collapse: separate;
    /* Required for sticky to work well with borders sometimes, but collapse is usually ok */
    border-spacing: 0;
}

._thead_7ulq7_22 {
    position: sticky;
    top: 0;
    background: var(--bg-app);
    z-index: 30;
    /* Higher than sticky col */
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-muted);
}

._th_7ulq7_22 {
    padding: 6px 4px;
    font-weight: 400;
    white-space: nowrap;
    background: var(--bg-app);
    /* Ensure background for sticky header */
    border-bottom: 1px solid var(--border-subtle);
}

._thRight_7ulq7_41 {
    text-align: right;
}

._thCenter_7ulq7_46 {
    text-align: center;
}

._stickyCol_7ulq7_51 {
    position: sticky;
    left: 0;
    background: var(--bg-app);
    /* Match app bg */
    z-index: 20;
    border-right: 1px solid var(--border-subtle);
    /* Separator */
}

/* Intersection of sticky header and sticky col */
._thead_7ulq7_22 ._stickyCol_7ulq7_51 {
    z-index: 40;
    /* Top-left corner needs highest index */
}

._row_7ulq7_67 {
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: background-color 0.15s;
}

._row_7ulq7_67:hover {
    background: rgba(255, 255, 255, 0.03);
}

._row_7ulq7_67:hover ._stickyCol_7ulq7_51 {
    background: #1e1e1e;
    /* Need to match hover color manually or use a solid color close to it */
    /* Since we can't easily inherit the semi-transparent hover on a sticky element with specific background, 
      we might need to set a solid color that represents the hover state. 
      Assuming dark theme ~ #000 or similar. Let's try to approximate or leave as bg-app. 
      Better yet, use a pseudo-element or just accept checking base bg. 
      Let's try using the variable if available or a hardcoded dark grey. */
    background: #1a1a1a;
}

._td_7ulq7_88 {
    padding: 6px 4px;
    white-space: nowrap;
    background: inherit;
    /* This might not work for sticky. Sticky needs opaque background. */
}

/* Override background for sticky col execution in body */
._row_7ulq7_67 ._stickyCol_7ulq7_51 {
    background: var(--bg-app);
}

._row_7ulq7_67:hover ._stickyCol_7ulq7_51 {
    background: #252525;
    /* Approximate hover state */
}

._tdRight_7ulq7_105 {
    text-align: right;
}

._tdCenter_7ulq7_110 {
    text-align: center;
}

._symbol_7ulq7_115 {
    font-weight: 700;
}

._sideTag_7ulq7_119 {
    font-size: 9px;
    opacity: 0.7;
    margin-left: 4px;
    text-transform: uppercase;
}

._muted_7ulq7_126 {
    color: var(--text-muted);
}

._bold_7ulq7_130 {
    font-weight: 700;
}

._closeBtn_7ulq7_134 {
    color: var(--text-muted);
    padding: 2px 6px;
    border-radius: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 10px;
    transition: all 0.15s;
    font-family: inherit;
}

._closeBtn_7ulq7_134:active {
    transform: scale(0.9);
}

._closeBtn_7ulq7_134:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

._up_7ulq7_155 {
    color: var(--color-up);
}

._down_7ulq7_159 {
    color: var(--color-down);
}/* OrderList */

._container_un2u1_3 {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-subtle);
}

._heading_un2u1_11 {
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: sticky;
    top: 0;
    background: var(--bg-app);
    z-index: 10;
}

._table_un2u1_24 {
    width: 100%;
    font-size: 10px;
    text-align: left;
    border-collapse: collapse;
}

._thead_un2u1_31 {
    position: sticky;
    top: 22px;
    background: var(--bg-app);
    z-index: 10;
    color: var(--text-muted);
}

._th_un2u1_31 {
    padding: 4px;
    font-weight: 400;
}

._thCenter_un2u1_44 {
    text-align: center;
}

._thRight_un2u1_49 {
    text-align: right;
}

/* Rows */
._row_un2u1_55 {
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: background-color 0.15s;
}

._row_un2u1_55:hover {
    background: rgba(255, 255, 255, 0.03);
}

._td_un2u1_65 {
    padding: 4px;
}

._tdCenter_un2u1_69 {
    text-align: center;
}

._tdRight_un2u1_74 {
    text-align: right;
}

._tdMuted_un2u1_79 {
    color: var(--text-muted);
}

._symbol_un2u1_84 {
    font-weight: 700;
}

._sideTag_un2u1_88 {
    font-size: 9px;
    opacity: 0.7;
    margin-left: 4px;
    text-transform: uppercase;
}

._opaque_un2u1_95 {
    opacity: 0.8;
}

._tpType_un2u1_99 {
    color: var(--color-up);
    font-weight: 700;
}

._slType_un2u1_104 {
    color: var(--color-down);
    font-weight: 700;
}

._triggerWarn_un2u1_109 {
    color: #eab308;
}

/* Cancel button */
._cancelBtn_un2u1_115 {
    color: var(--text-muted);
    padding: 2px 6px;
    border-radius: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 10px;
    transition: all 0.15s;
    font-family: inherit;
}

._cancelBtn_un2u1_115:active {
    transform: scale(0.9);
}

._cancelBtn_un2u1_115:hover {
    color: var(--status-down);
    background: rgba(255, 61, 87, 0.1);
}

/* Algo Node Wizard Styles */
._nodeList_un2u1_137 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

._nodeRow_un2u1_144 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

._nodeRow_un2u1_144:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-primary);
}

._nodeMain_un2u1_163 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

._nodeHeader_un2u1_169 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    min-height: 20px;
}

._nodeSymbol_un2u1_177 {
    font-weight: 800;
    font-size: 13px;
    color: var(--text-primary);
}

._statusBadge_un2u1_183 {
    font-size: 9px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

._waiting_un2u1_191 { background: rgba(148, 163, 184, 0.2); color: #94A3B8; }
._active_un2u1_192 { background: rgba(52, 211, 153, 0.2); color: #34D399; }
._triggered_un2u1_193 { background: rgba(251, 191, 36, 0.2); color: #FBBF24; }
._executed_un2u1_194 { background: rgba(99, 102, 241, 0.2); color: #6366F1; }
._paused_un2u1_195 { background: rgba(244, 63, 94, 0.2); color: #F43F5E; }

._nodeCondition_un2u1_197 {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

._nodeAction_un2u1_203 {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-primary);
}

._nodeActions_un2u1_209 {
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s;
    margin-left: auto; /* Push to right, before status badge */
}

._nodeRow_un2u1_144:hover ._nodeActions_un2u1_209 {
    opacity: 1;
}

._nodeActionBtn_un2u1_221 {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 4px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

._nodeActionBtn_un2u1_221:hover {
    color: var(--text-primary);
    border-color: var(--border-highlight);
}

._nodeChildrenPreview_un2u1_238 {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px dashed var(--border-subtle);
}

._up_un2u1_249 {
    color: var(--color-up);
}

._down_un2u1_253 {
    color: var(--color-down);
}/* AccountInfoDisplay */

._container_1rkle_3 {
    border-radius: var(--radius-md);
    flex-shrink: 0;
    position: relative;
    padding-bottom: 12px;
}

._grid_1rkle_10 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border-subtle);
}

._cell_1rkle_17 {
    background: var(--bg-panel);
    padding: 6px 10px;
}

._cellLabel_1rkle_22 {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 2px;
}

._cellValue_1rkle_31 {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

._value_1rkle_37 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

._unit_1rkle_43 {
    font-size: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

/* PnL row */
._pnlRow_1rkle_50 {
    padding: 6px 10px;
    border-top: 1px solid var(--border-subtle);
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

._pnlProfit_1rkle_59 {
    background: rgba(52, 211, 153, 0.06);
    border-top-color: rgba(52, 211, 153, 0.15);
}

._pnlLoss_1rkle_65 {
    background: rgba(248, 113, 113, 0.06);
    border-top-color: rgba(248, 113, 113, 0.15);
}

._pnlLabel_1rkle_71 {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

._pnlValue_1rkle_79 {
    display: flex;
    align-items: center;
    gap: 6px;
}

._pnlArrow_1rkle_85 {
    font-size: 10px;
}

._pnlAmount_1rkle_89 {
    font-size: 14px;
    font-weight: 700;
}

._up_1rkle_94 {
    color: var(--color-up);
}

._down_1rkle_98 {
    color: var(--color-down);
}

._pnlUnit_1rkle_102 {
    font-size: 8px;
    opacity: 0.7;
    font-weight: 500;
}

/* Position Details Row */
._posRow_1rkle_109 {
    padding: 6px 10px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-panel);
    cursor: pointer;
    transition: background-color 0.2s;
}

._posRow_1rkle_109:hover {
    background: var(--bg-panel-hover);
}

._posLabel_1rkle_121 {
    margin-bottom: 2px;
}

._posValueWrapper_1rkle_126 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

._posValue_1rkle_126 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

._posSubValue_1rkle_139 {
    font-size: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

._posActions_1rkle_145 {
    display: flex;
    gap: 4px;
}

._actionBtn_1rkle_150 {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

._actionBtn_1rkle_150:active {
    transform: scale(0.96);
}

._actionBtn_1rkle_150:hover {
    background: var(--bg-panel-hover);
    color: var(--text-primary);
    border-color: var(--text-muted);
}

._closeAll_1rkle_173 {
    background: rgba(248, 113, 113, 0.1);
    color: var(--color-down);
    border-color: rgba(248, 113, 113, 0.3);
}

._closeAll_1rkle_173:hover {
    background: var(--color-down);
    color: white;
    border-color: var(--color-down);
}

._collapseBtn_1rkle_185 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 35, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px 8px 0 0;
    width: 44px;
    height: 16px;
    padding: 0;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

._collapseBtn_1rkle_185:hover:not(:disabled) {
    background: rgba(45, 45, 50, 0.95);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 -4px 15px rgba(255, 255, 255, 0.1);
}

._collapseBtn_1rkle_185:disabled {
    cursor: not-allowed;
}

._otherPositionsList_1rkle_220 {
    max-height: 150px;
    overflow-y: auto;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-panel);
}

/* Custom scrollbar for the positions list */
._otherPositionsList_1rkle_220::-webkit-scrollbar {
    width: 4px;
}

._otherPositionsList_1rkle_220::-webkit-scrollbar-track {
    background: transparent;
}

._otherPositionsList_1rkle_220::-webkit-scrollbar-thumb {
    background: var(--border-highlight);
    border-radius: 4px;
}

._otherPositionsList_1rkle_220::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}/* MiniChart */

._container_1etjg_3 {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: opacity 0.15s;
}

._container_1etjg_3:hover {
    opacity: 0.9;
}/* MarketOverview */

._container_1ngls_3 {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-panel);
    overflow: hidden;
}

._header_1ngls_11 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

._title_1ngls_20 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

._tfSelect_1ngls_28 {
    background: var(--bg-app);
    color: var(--text-primary);
    font-size: 10px;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
    padding: 2px 4px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s;
    font-family: inherit;
}

._tfSelect_1ngls_28:hover {
    border-color: var(--accent-primary);
}

/* Grid of cards */
._grid_1ngls_46 {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
}

/* Individual chart card */
._card_1ngls_57 {
    height: 140px;
    background: var(--bg-app);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: border-color 0.15s;
    position: relative;
}

._card_1ngls_57:hover {
    border-color: var(--accent-primary);
}

._cardInfo_1ngls_74 {
    position: absolute;
    top: 4px;
    left: 8px;
    z-index: 10;
    pointer-events: none;
}

._cardSymbol_1ngls_82 {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-primary);
}

._cardPrice_1ngls_88 {
    font-size: 10px;
    color: var(--text-muted);
}

._chartWrap_1ngls_93 {
    flex: 1;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: opacity 0.15s;
}

._card_1ngls_57:hover ._chartWrap_1ngls_93 {
    opacity: 1;
}

._loading_1ngls_105 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 10px;
    color: var(--text-muted);
    animation: _subtlePulse_1ngls_1 2s ease-in-out infinite;
}/* ToastContainer */

._container_10lsu_3 {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    pointer-events: none;
    font-family: 'Inter', system-ui, sans-serif;
}

._toast_10lsu_17 {
    min-width: 260px;
    max-width: 420px;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: _fadeIn_10lsu_1 0.2s ease-out;
    pointer-events: auto;
    border: 1px solid transparent;
}

._icon_10lsu_34 {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

/* Variants */
._success_10lsu_41 {
    background: #065f46;
    border-color: #10b981;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.2);
}

._error_10lsu_48 {
    background: #7f1d1d;
    border-color: #ef4444;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 68, 68, 0.2);
}

._warning_10lsu_55 {
    background: #713f12;
    border-color: #eab308;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(234, 179, 8, 0.2);
}

._info_10lsu_62 {
    background: #1e3a5f;
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.2);
}/* SymbolSelector */

/* Wrapper */
._wrapper_1o0o8_4 {
    position: relative;
    z-index: 1000;
    flex-shrink: 0;
    width: 192px;
}

@media (max-width: 768px) {
    ._wrapper_1o0o8_4 {
        width: 140px;
        /* Smaller width on mobile */
    }
}

/* Trigger button */
._trigger_1o0o8_19 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
    font-family: inherit;
}

._trigger_1o0o8_19:hover {
    border-color: var(--border-highlight);
}

._trigger_1o0o8_19:focus {
    box-shadow: 0 0 0 1px var(--accent-primary);
}

._triggerOpen_1o0o8_42 {
    box-shadow: 0 0 0 1px var(--accent-primary);
    border-color: var(--accent-primary);
}

._triggerContent_1o0o8_48 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    flex: 1;
    min-width: 80px;
}

._triggerSymbol_1o0o8_57 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    text-align: left;
}

._triggerLabel_1o0o8_69 {
    font-size: 9px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Error dot */
._errorDot_1o0o8_78 {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -4px;
    margin-right: -4px;
    width: 8px;
    height: 8px;
    background: var(--color-down);
    border-radius: 50%;
    animation: _subtlePulse_1o0o8_1 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

/* Backdrop */
._backdrop_1o0o8_93 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
    z-index: 40;
}

/* Dropdown */
._dropdown_1o0o8_102 {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    width: 288px;
    border-radius: var(--radius-md);
    background: var(--bg-panel);
    border: 1px solid var(--border-highlight);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: _fadeIn_1o0o8_1 0.1s ease-out;
}

/* Search */
._search_1o0o8_120 {
    padding: 8px;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-panel);
}

._searchInner_1o0o8_126 {
    position: relative;
}

._searchIcon_1o0o8_130 {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

._searchInput_1o0o8_139 {
    width: 100%;
    background: var(--bg-app);
    color: var(--text-primary);
    font-size: 12px;
    border-radius: 4px;
    padding: 6px 8px 6px 32px;
    border: 1px solid var(--border-subtle);
    outline: none;
    font-family: inherit;
    transition: border-color 0.15s;
}

._searchInput_1o0o8_139:focus {
    border-color: var(--accent-primary);
}

._searchInput_1o0o8_139::placeholder {
    color: var(--text-muted);
}

/* List */
._list_1o0o8_161 {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    padding: 4px 0;
    list-style: none;
    margin: 0;
}

._emptyItem_1o0o8_170 {
    padding: 32px 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

._item_1o0o8_177 {
    padding: 6px 12px 6px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.1s;
    border-left: 2px solid transparent;
    color: var(--text-secondary);
}

._item_1o0o8_177:hover {
    background: var(--bg-elevated);
}

._itemActive_1o0o8_192 {
    background: var(--bg-elevated);
    border-left-color: var(--accent-secondary);
    /* Different color for active */
}

._itemSelected_1o0o8_199 {
    background: var(--accent-glow);
    border-left-color: var(--accent-primary);
    box-shadow: inset 0 0 0 1px var(--accent-primary-alpha, rgba(59, 130, 246, 0.2));
}

._itemInfo_1o0o8_206 {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    margin-right: 8px;
}

._itemBase_1o0o8_214 {
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-primary);
}

._itemSymbol_1o0o8_223 {
    font-size: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-muted);
}

._itemStats_1o0o8_231 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

._itemVariation_1o0o8_238 {
    font-size: 10px;
    font-weight: 700;
}

._itemTurnover_1o0o8_243 {
    font-size: 9px;
    color: var(--text-muted);
    opacity: 0.6;
}

._itemDot_1o0o8_249 {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-left: 6px;
}

._dotActive_1o0o8_257 {
    background: var(--accent-primary);
    /* Blue dot for currently trading symbol */
    box-shadow: 0 0 6px var(--accent-primary);
}

._dotQualified_1o0o8_263 {
    background: var(--border-subtle);
}

._up_1o0o8_267 {
    color: var(--color-up);
}

._down_1o0o8_271 {
    color: var(--color-down);
}

/* Footer */
._footer_1o0o8_276 {
    padding: 6px 12px;
    background: var(--bg-app);
    border-top: 1px solid var(--border-subtle);
    font-size: 9px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._footerMono_1o0o8_287 {
    font-family: 'JetBrains Mono', monospace;
    opacity: 0.5;
}

._turnoverInfo_1o0o8_292 {
    display: flex;
    align-items: center;
    gap: 6px;
}/* AppHeader */

._header_rvsnv_5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    gap: 10px;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-subtle);
}

._left_rvsnv_25,
._right_rvsnv_27 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

._right_rvsnv_27 {
    justify-content: flex-end;
    min-width: 0;
    flex: 1;
    /* Allow right side to take available space */
}

@media (max-width: 768px) {

    ._brand_rvsnv_59,
    ._badge_rvsnv_61,
    ._divider_rvsnv_63 {
        display: none;
    }

    ._header_rvsnv_5 {
        padding: 4px 8px;
        gap: 6px;
    }

    /* Hide list key on mobile, show trigger instead */
    ._timeframes_rvsnv_83 {
        display: none;
    }

    ._tfTrigger_rvsnv_91 {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 4px 8px;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 6px;
        font-size: 11px;
        font-weight: 700;
        color: var(--text-primary);
        cursor: pointer;
        user-select: none;
    }

    ._mode_rvsnv_121 {
        display: none;
    }
}

/* Dropdown (Mobile Only) */
._tfDropdown_rvsnv_133 {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-panel);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    z-index: 100;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    padding: 4px;
    animation: _fadeIn_rvsnv_1 0.1s ease-out;
}

._tfItem_rvsnv_167 {
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    color: var(--text-secondary);
    border-radius: 4px;
    text-align: center;
    transition: background 0.1s;
}

._tfItem_rvsnv_167:hover {
    background: var(--bg-elevated);
}

._tfItemActive_rvsnv_195 {
    background: var(--accent-primary);
    color: #fff;
}

._tfItemActive_rvsnv_195:hover {
    background: var(--accent-primary);
}

._backdrop_rvsnv_215 {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
}

._left_rvsnv_25 {
    min-width: 0;
}

/* Brand */
._brand_rvsnv_59 {
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    flex-shrink: 0;
}

._headerLogo_rvsnv_257 {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

._brandName_rvsnv_269 {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-transform: uppercase;
}

._brandAccent_rvsnv_285 {
    color: var(--accent-primary);
}

/* Divider */
._divider_rvsnv_63 {
    width: 1px;
    height: 18px;
    background: var(--border-subtle);
    flex-shrink: 0;
}

/* Badge */
._badge_rvsnv_61 {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-card);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

/* Price display */
._price_rvsnv_337 {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

._priceValue_rvsnv_349 {
    font-size: 16px;
    font-weight: 700;
}

._priceChange_rvsnv_359 {
    font-size: 12px;
    font-weight: 600;
}

._up_rvsnv_369 {
    color: var(--color-up);
}

._down_rvsnv_377 {
    color: var(--color-down);
}

/* Stat column */
._stat_rvsnv_387 {
    display: flex;
    flex-direction: column;
}

._statLabel_rvsnv_397 {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

._statValue_rvsnv_411 {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Timeframe pills */
._timeframes_rvsnv_83 {
    display: flex;
    gap: 2px;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 2px;
    border: 1px solid var(--border-subtle);
}

._tfWrapper_rvsnv_441 {
    position: relative;
    z-index: 101;
    /* Ensure above backdrop */
}



._tfTrigger_rvsnv_91 {
    display: flex;
    /* Always flex, visibility controlled by React */
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
}

._tfBtn_rvsnv_489 {
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
    background: transparent;
    color: var(--text-muted);
}

._tfBtnActive_rvsnv_515 {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(129, 140, 248, 0.3);
}

/* Connection mode badge */
._mode_rvsnv_121 {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

._modeElectron_rvsnv_547 {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

._modeHeadless_rvsnv_561 {
    background: rgba(129, 140, 248, 0.1);
    color: #a5b4fc;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

._settingsBtn_rvsnv_575 {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

._settingsBtn_rvsnv_575:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    transform: rotate(30deg);
}/* SettingsPanel */

._panel_1weaf_3 {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

._title_1weaf_13 {
    font-size: 14px;
    font-weight: 700;
}

._card_1weaf_18 {
    padding: var(--space-md);
}

._cardRow_1weaf_22 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._cardLabel_1weaf_28 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

._cardDetail_1weaf_34 {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Mode badge */
._modeBadge_1weaf_41 {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

._modeSim_1weaf_48 {
    background: rgba(234, 179, 8, 0.12);
    color: #fde047;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

._modeLive_1weaf_55 {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Shortcuts */
._shortcuts_1weaf_63 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

._shortcutRow_1weaf_70 {
    display: flex;
    align-items: center;
    gap: 10px;
}

._kbd_1weaf_76 {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
}

._shortcutDesc_1weaf_86 {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Settings Controls */
._settingRow_1weaf_92 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-default);
}

._settingValue_1weaf_101 {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

._subSetting_1weaf_109 {
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border-default);
}

._subLabel_1weaf_117 {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Toggle Switch */
._switch_1weaf_125 {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

._switch_1weaf_125 input {
    opacity: 0;
    width: 0;
    height: 0;
}

._slider_1weaf_138 {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-input);
    transition: .3s;
    border-radius: 20px;
    border: 1px solid var(--border-default);
}

._slider_1weaf_138:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + ._slider_1weaf_138 {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

input:checked + ._slider_1weaf_138:before {
    transform: translateX(14px);
}

/* Range Input */
._rangeInput_1weaf_173 {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--bg-input);
    border-radius: 2px;
    outline: none;
}

._rangeInput_1weaf_173::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--brand-primary);
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

._secondaryBtn_1weaf_194 {
    width: 100%;
    padding: 10px;
    background: var(--bg-input);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 12px;
}

._secondaryBtn_1weaf_194:hover {
    background: var(--bg-elevated);
    border-color: var(--border-highlight);
}

._updateBtn_1weaf_213 {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}

._updateBtn_1weaf_213:hover:not(:disabled) {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

._updateBtn_1weaf_213:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

._updatingText_1weaf_230 {
    font-size: 11px;
    font-weight: 600;
    color: #60a5fa;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: _subtlePulse_1weaf_1 2s infinite ease-in-out;
}

._spinner_1weaf_241 {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-top-color: #60a5fa;
    border-radius: 50%;
    animation: _spin_1weaf_241 1s linear infinite;
    flex-shrink: 0;
}

@keyframes _spin_1weaf_241 {
    to { transform: rotate(360deg); }
}

._updateLogBox_1weaf_255 {
    margin-top: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    padding: 8px;
    max-height: 150px;
    overflow-y: auto;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

._logLine_1weaf_271 {
    word-break: break-all;
    line-height: 1.3;
}._overlay_1qdno_1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
}

._modal_1qdno_15 {
    background: var(--bg-surface);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 460px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

._header_1qdno_26 {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-default);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._header_1qdno_26 h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

._closeBtn_1qdno_40 {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

._body_1qdno_49 {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

._description_1qdno_56 {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

._field_1qdno_62 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

._field_1qdno_62 label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

._field_1qdno_62 input {
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    padding: 10px;
    color: var(--text-primary);
    font-size: 13px;
}

._hint_1qdno_83 {
    font-size: 10px;
    color: var(--brand-primary);
    margin-top: 4px;
}

._checkboxField_1qdno_89 {
    display: flex;
    align-items: center;
    gap: 10px;
}

._checkboxField_1qdno_89 input {
    width: 16px;
    height: 16px;
    accent-color: var(--brand-primary);
}

._checkboxField_1qdno_89 label {
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}

._status_1qdno_107 {
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    margin-bottom: 8px;
}

._error_1qdno_114 {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

._success_1qdno_120 {
    background: rgba(34, 197, 94, 0.1);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

._actions_1qdno_126 {
    display: flex;
    gap: 12px;
    margin-top: var(--space-md);
}

._saveBtn_1qdno_132 {
    flex: 2;
    padding: 12px;
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

._deleteBtn_1qdno_144 {
    flex: 1;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

._saveBtn_1qdno_132:disabled, ._deleteBtn_1qdno_144:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* PortfolioPanel */

._panel_urkxh_3 {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    overflow: auto;
    flex: 1;
    padding: var(--space-sm);
}

._heading_urkxh_12 {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}/* BottomTabBar — Mobile navigation */

._tabs_1fiup_3 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: var(--bottom-bar-h);
    padding-bottom: var(--safe-area-bottom);
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

._tab_1fiup_3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 12px;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.15s;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

._tab_1fiup_3:active {
    transform: scale(0.92);
}

._tabActive_1fiup_39 {
    color: var(--accent-primary);
}

._icon_1fiup_44 {
    font-size: 20px;
    line-height: 1;
}/* AlgoExitConfigurator.module.css */
._container_1t1y2_2 {
    margin-bottom: 8px;
    padding: 0 !important; /* AlgoCard handled it or we want full control */
    overflow: hidden;
}

._header_1t1y2_8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

._title_1t1y2_16 {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

._closeBtn_1t1y2_23 {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

._closeBtn_1t1y2_23:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

._formContent_1t1y2_41 {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

._formRow_1t1y2_48 {
    display: flex;
    gap: 8px;
}

._formGroup_1t1y2_53 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

._formGroup_1t1y2_53 label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

._compactDropdown_1t1y2_68 {
    font-size: 12px !important;
}

._dynamicConfig_1t1y2_72 {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 4px 0;
}

._input_1t1y2_78 {
    width: 100%;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

._input_1t1y2_78:focus {
    border-color: var(--color-primary);
}

._footer_1t1y2_95 {
    padding: 8px 12px 12px;
}

._submitBtn_1t1y2_99 {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    font-size: 11px;
    cursor: pointer;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

._submitBtn_1t1y2_99:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}._panel_1frju_1 {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
    height: 100%;
    overflow-y: auto;
    background: var(--bg-app);
    color: var(--text-primary);
}

._section_1frju_12 {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

._heading_1frju_22 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

._grid_1frju_31 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
}

._statCard_1frju_37 {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
}

._statLabel_1frju_46 {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

._statValue_1frju_52 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

._chartsGrid_1frju_58 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-md);
}

._tablesGrid_1frju_64 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: var(--space-md);
}

._chartCard_1frju_70 {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    height: 250px;
}

._chartHeader_1frju_81 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._chartPlaceholder_1frju_87 {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-bottom: 1px dashed var(--border-subtle);
    border-left: 1px dashed var(--border-subtle);
    padding: 10px;
    position: relative;
    overflow: hidden;
}

._mockChartLine_1frju_99 {
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--accent-primary);
    transform: rotate(-15deg);
    box-shadow: 0 0 10px var(--accent-primary);
    transform-origin: left;
}
._mockChartLine_1frju_99::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 100%;
    width: 50%;
    height: 3px;
    background: var(--text-success);
    transform: rotate(-35deg);
    transform-origin: left;
    box-shadow: 0 0 10px var(--text-success);
}

._mockChartBars_1frju_123 {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    justify-content: space-between;
}

._mockBar_1frju_133 {
    flex: 1;
    max-width: 25px;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.8));
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease-in-out;
}

._positive_1frju_141 {
    color: var(--text-success) !important;
}

._button_1frju_145 {
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: var(--space-sm) var(--space-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

._button_1frju_145:hover {
    filter: brightness(1.1);
}

._buttonSecondary_1frju_160 {
    background: var(--bg-surface-active);
    color: var(--text-primary);
}

._table_1frju_64 {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

._table_1frju_64 th {
    text-align: left;
    color: var(--text-muted);
    padding: var(--space-xs);
    border-bottom: 1px solid var(--border-subtle);
}

._table_1frju_64 td {
    padding: var(--space-xs);
    border-bottom: 1px solid var(--border-surface);
}._backdrop_em596_1 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

._modal_em596_13 {
    background: var(--bg-card, #121418);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 12px;
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

._header_em596_26 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

._headerLeft_em596_35 {
    display: flex;
    align-items: center;
    gap: 10px;
}

._symbol_em596_41 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-primary, #00d4ff);
}

._contractLabel_em596_47 {
    font-size: 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 5px;
    padding: 2px 8px;
    color: #00d4ff;
    font-family: monospace;
}

._recordCount_em596_57 {
    font-size: 11px;
    color: var(--text-muted, #666);
}

._closeBtn_em596_62 {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--text-muted, #666);
    cursor: pointer;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

._closeBtn_em596_62:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

._kpiStrip_em596_79 {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

._kpi_em596_79 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

._kpi_em596_79:last-child {
    border-right: none;
}

._kpiLabel_em596_99 {
    font-size: 10px;
    color: var(--text-muted, #666);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}

._kpiValue_em596_107 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;
    color: var(--text-primary, #fff);
}

._chartTabs_em596_114 {
    display: flex;
    gap: 4px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

._tab_em596_122, ._tabActive_em596_122 {
    display: flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

._tab_em596_122 {
    background: transparent;
    border-color: rgba(255,255,255,0.1);
    color: var(--text-muted, #666);
}

._tab_em596_122:hover {
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

._tabActive_em596_122 {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

._chartArea_em596_151 {
    flex: 1;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

._chart_em596_114 {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

._empty_em596_165 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted, #666);
    gap: 12px;
    padding: 20px;
    text-align: center;
    font-size: 13px;
}

._footer_em596_178 {
    padding: 8px 20px;
    font-size: 10px;
    color: var(--text-muted, #555);
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

._footer_em596_178 code {
    font-family: monospace;
    font-size: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    padding: 1px 4px;
    color: #aaa;
}
._drawerWrapper_rj7kr_1 {
    background: var(--bg-card);
    border-top: 1px solid var(--border-highlight);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 50;
    animation: _slideUp_rj7kr_1 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    overflow: hidden;
}

._resizeHandle_rj7kr_13 {
    height: 6px;
    width: 100%;
    cursor: ns-resize;
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 100;
    transition: background 0.2s;
}

._resizeHandle_rj7kr_13:hover, ._resizeHandle_rj7kr_13:active {
    background: var(--accent-primary);
}

._drawerHeader_rj7kr_28 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-subtle);
}

._drawerTitle_rj7kr_37 {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
}

._closeBtn_rj7kr_44 {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
}

._drawerContent_rj7kr_52 {
    flex: 1;
    display: flex;
    padding: 12px;
    overflow: auto;
}

/* Mobile Modal Layout */
._backdrop_rj7kr_60 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1500;
    animation: _fadeIn_rj7kr_1 0.2s ease-out;
}

._mobileModal_rj7kr_69 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60svh;
    background: var(--bg-panel);
    border-top: 1px solid var(--border-highlight);
    border-radius: 16px 16px 0 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    animation: _slideUpMobile_rj7kr_1 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

._modalDragHandle_rj7kr_86 {
    width: 40px;
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
    margin: 8px auto 0;
    flex-shrink: 0;
}

._modalHeader_rj7kr_95 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px 12px;
}

._modalTitle_rj7kr_102 {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
}

._modalContent_rj7kr_109 {
    flex: 1;
    overflow: auto;
    padding: 0 16px 16px;
}

@keyframes _slideUp_rj7kr_1 {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes _fadeIn_rj7kr_1 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes _slideUpMobile_rj7kr_1 {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
._wizardContainer_sxp7a_1 {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    width: 100%;
}

._header_sxp7a_15 h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

._symbolBadge_sxp7a_25 {
    background: var(--bg-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 1rem;
    color: var(--accent-primary);
    border: 1px solid var(--border-color);
}

._flowSection_sxp7a_34 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

._sectionTitle_sxp7a_44 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

._sentence_sxp7a_53 {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

._sentenceSub_sxp7a_63 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 24px;
    border-left: 2px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    position: relative;
}

._sentenceSub_sxp7a_63::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

._arrowIcon_sxp7a_83 {
    color: var(--text-muted);
    font-weight: bold;
}

._keywordIf_sxp7a_88 {
    font-weight: 700;
    color: #EAB308; /* Yellow */
    text-transform: uppercase;
    font-size: 0.85rem;
}

._keywordThen_sxp7a_95 {
    font-weight: 700;
    color: #3B82F6; /* Blue */
    text-transform: uppercase;
    font-size: 0.85rem;
}

._keywordWait_sxp7a_102 {
    font-weight: 600;
    color: #94A3B8;
    font-style: italic;
}

._textAccent_sxp7a_108 {
    font-weight: 500;
    color: var(--text-primary);
}

._textMuted_sxp7a_113 {
    color: var(--text-muted);
    font-size: 0.9rem;
}

._inlineDropdown_sxp7a_118 {
    min-width: 120px;
}

._input_sxp7a_122 {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 6px;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: 14px;
}

._input_sxp7a_122:focus {
    border-color: var(--accent-primary);
    background: var(--bg-primary);
}

._inlineInput_sxp7a_139 {
    display: inline-block;
    padding: 6px 10px; /* Slightly tighter for inline use */
}

._inputWithToggle_sxp7a_144 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding-right: 4px;
}

._inputWithToggle_sxp7a_144 ._input_sxp7a_122 {
    border: none;
}

._trackBtn_sxp7a_158 {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
    user-select: none;
    opacity: 0.5;
}

._trackBtn_sxp7a_158:hover {
    background: rgba(255, 255, 255, 0.05);
    opacity: 1;
}

._trackActive_sxp7a_175 {
    opacity: 1;
    background: rgba(99, 102, 241, 0.2);
}

._levInput_sxp7a_180 {
    width: 60px;
    text-align: center;
}

._sizeInput_sxp7a_185 {
    width: 80px;
    text-align: right;
}

._timeInput_sxp7a_190 {
    width: 90px;
    text-align: right;
}

._toggleLabel_sxp7a_195 {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 1.05rem;
}

._checkbox_sxp7a_203 {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

._actions_sxp7a_210 {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
}

._cancelBtn_sxp7a_218 {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #94A3B8;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

._cancelBtn_sxp7a_218:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

._saveBtn_sxp7a_234 {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

._saveBtn_sxp7a_234:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}
._addChildBtn_sxp7a_251 {
    background: rgba(99, 102, 241, 0.1);
    border: 1px dashed rgba(99, 102, 241, 0.4);
    color: var(--accent-primary);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

._addChildBtn_sxp7a_251:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--accent-primary);
    transform: translateX(4px);
}

._unitBadge_sxp7a_272 {
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 11px;
    color: var(--text-muted);
}

/* Complex Conditions */
._conditionGroup_sxp7a_281 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 2px solid var(--accent-color);
    margin: 8px 0;
}

._logicalOpRow_sxp7a_292 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

._conditionRow_sxp7a_299 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

._addCondBtn_sxp7a_309 {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.2s;
}

._addCondBtn_sxp7a_309:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

._removeCondBtn_sxp7a_327 {
    background: rgba(255, 77, 79, 0.1);
    border: none;
    color: #ff4d4f;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
}

._removeCondBtn_sxp7a_327:hover {
    background: #ff4d4f;
    color: white;
}

._groupContainer_sxp7a_347 {
    border-left: 3px solid #64748B;
    padding-left: 16px;
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 4px;
}

._groupAnd_sxp7a_355 { border-left-color: #3B82F6; } /* Blue for Parallel AND */
._groupOr_sxp7a_356 { border-left-color: #F97316; }  /* Orange for OCO OR */
._groupSeq_sxp7a_357 { border-left-color: #A855F7; } /* Purple for Sequence */

._nestedConditions_sxp7a_359, ._nestedActions_sxp7a_359 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

._logicBlock_sxp7a_366 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
}

._addLogicBtn_sxp7a_373 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

._addLogicBtn_sxp7a_373:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

._timeInput_sxp7a_190 {
    width: 60px !important;
    text-align: center;
}

._dragHandle_sxp7a_395 {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    color: var(--text-muted);
    padding: 4px;
    margin-right: -8px;
    opacity: 0.3;
    transition: opacity 0.2s;
}

._stepNode_sxp7a_407:hover ._dragHandle_sxp7a_395 {
    opacity: 1;
}

._dragHandle_sxp7a_395:active {
    cursor: grabbing;
}

._rootNode_sxp7a_415 {
    border-left: 4px solid var(--accent-primary);
}

._tfDropdown_sxp7a_419 {
    min-width: 70px !important;
    font-size: 11px;
}
._overlay_8tnje_1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

._modal_8tnje_15 {
    background: linear-gradient(145deg, #1a1b1e 0%, #111214 100%);
    border: 1px solid #2c2e33;
    border-radius: 20px;
    width: 440px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    animation: _slideUp_8tnje_1 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes _slideUp_8tnje_1 {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

._header_8tnje_36 {
    text-align: center;
    margin-bottom: 28px;
}

._icon_8tnje_41 {
    color: #4dabf7;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(77, 171, 247, 0.4));
}

._iconWarn_8tnje_47 {
    color: #ffd43b;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(255, 212, 59, 0.4));
}

._header_8tnje_36 h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: -0.5px;
}

._header_8tnje_36 p {
    color: #909296;
    font-size: 14px;
    line-height: 1.6;
}

._activationBox_8tnje_67, ._expiredBox_8tnje_67 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

._inputGroup_8tnje_73 label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #c1c2c5;
    margin-bottom: 8px;
}

._inputRow_8tnje_81 {
    position: relative;
    display: flex;
    align-items: center;
}

._inputIcon_8tnje_87 {
    position: absolute;
    left: 12px;
    color: #5c5f66;
}

._inputRow_8tnje_81 input {
    width: 100%;
    background: #25262b;
    border: 1px solid #373a40;
    border-radius: 10px;
    padding: 12px 12px 12px 40px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

._inputRow_8tnje_81 input:focus {
    border-color: #4dabf7;
    background: #2c2e33;
    box-shadow: 0 0 0 4px rgba(77, 171, 247, 0.1);
}

._activateBtn_8tnje_112, ._updateBtn_8tnje_112 {
    width: 100%;
    background: #1971c2;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

._activateBtn_8tnje_112:hover:not(:disabled), ._updateBtn_8tnje_112:hover {
    background: #1c7ed6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(25, 113, 194, 0.3);
}

._activateBtn_8tnje_112:active {
    transform: translateY(0);
}

._activateBtn_8tnje_112:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

._expiredBox_8tnje_67 {
    background: rgba(255, 212, 59, 0.05);
    border: 1px solid rgba(255, 212, 59, 0.1);
    border-radius: 12px;
    padding: 20px;
}

._infoItem_8tnje_151 {
    margin-bottom: 12px;
}

._infoItem_8tnje_151 strong {
    display: block;
    font-size: 12px;
    color: #ffd43b;
    text-transform: uppercase;
    margin-bottom: 4px;
}

._infoItem_8tnje_151 span {
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
}

._infoItem_8tnje_151 p {
    font-size: 13px;
    color: #909296;
    line-height: 1.4;
}

._error_8tnje_174 {
    background: rgba(250, 82, 82, 0.1);
    border: 1px solid rgba(250, 82, 82, 0.2);
    color: #ff6b6b;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

._footer_8tnje_187 {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #5c5f66;
}

._footer_8tnje_187 a {
    color: #4dabf7;
    text-decoration: none;
    font-weight: 500;
}

._spin_8tnje_200 {
    animation: _spin_8tnje_200 1s linear infinite;
}

@keyframes _spin_8tnje_200 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}._container_yldk1_1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, #1a1b26, #0f0f13);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

._wizardCard_yldk1_14 {
    background: rgba(30, 31, 45, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    padding: var(--space-xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

._header_yldk1_25 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

._logo_yldk1_30 {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    display: block;
}

._header_yldk1_25 h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

._header_yldk1_25 p {
    color: var(--text-secondary);
    font-size: 14px;
}

._steps_yldk1_49 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

._step_yldk1_49 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

._step_yldk1_49._active_yldk1_66 {
    color: var(--accent-primary);
}

._stepDivider_yldk1_70 {
    height: 1px;
    width: 40px;
    background: var(--bg-tertiary);
}

._form_yldk1_76 {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

._field_yldk1_82 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

._field_yldk1_82 label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

._field_yldk1_82 input {
    background: var(--bg-tertiary);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 12px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.2s ease;
}

._field_yldk1_82 input:focus {
    border-color: var(--accent-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

._checkboxField_yldk1_110 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}

._checkboxField_yldk1_110 input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
}

._checkboxField_yldk1_110 label {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

._error_yldk1_129 {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 10px;
    border-radius: var(--radius-md);
    font-size: 13px;
    margin-bottom: var(--space-md);
    text-align: center;
}

._primaryBtn_yldk1_140 {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

._primaryBtn_yldk1_140:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

._primaryBtn_yldk1_140:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

._secondaryBtn_yldk1_163 {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

._actions_yldk1_174 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-md);
}
._skipBtn_yldk1_179 {
    background: transparent;
    color: var(--text-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 4px;
}

._skipBtn_yldk1_179:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.2);
}
._container_1nwx9_1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, #1a1b26, #09090b);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

._lockCard_1nwx9_14 {
    width: 320px;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

._header_1nwx9_23 {
    text-align: center;
}

._logo_1nwx9_27 {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4));
}

._header_1nwx9_23 h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

._header_1nwx9_23 p {
    color: var(--text-tertiary);
    font-size: 13px;
}

._pinDisplay_1nwx9_46 {
    display: flex;
    gap: 12px;
    margin: var(--space-md) 0;
}

._dot_1nwx9_52 {
    width: 14px;
    height: 14px;
    border: 2px solid var(--bg-tertiary);
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

._dot_1nwx9_52._filled_1nwx9_60 {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

._error_1nwx9_67 {
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    height: 16px;
    animation: _shake_1nwx9_1 0.4s ease;
}

@keyframes _shake_1nwx9_1 {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

._numpad_1nwx9_81 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

._numpad_1nwx9_81 button {
    aspect-ratio: 1;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

._numpad_1nwx9_81 button:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

._numpad_1nwx9_81 button:active {
    background: var(--accent-primary);
    transform: scale(0.95);
}

._numpad_1nwx9_81 button._special_1nwx9_113 {
    background: transparent;
    color: var(--text-tertiary);
}

._numpad_1nwx9_81 button._ready_1nwx9_118 {
    color: var(--accent-primary);
    font-weight: 800;
}

._numpad_1nwx9_81 button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
._loadingOverlay_18xtb_1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: var(--text-secondary);
    gap: var(--space-md);
}

._spinner_18xtb_17 {
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-tertiary);
    border-top: 3px solid var(--accent-primary);
    border-radius: 50%;
    animation: _spin_18xtb_17 1s linear infinite;
}

@keyframes _spin_18xtb_17 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
._banner_u73jw_1 {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #1a1b1e;
    border: 1px solid #2c2e33;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    animation: _slideIn_u73jw_1 0.3s ease-out;
    max-width: 400px;
}

@keyframes _slideIn_u73jw_1 {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

._content_u73jw_29 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

._content_u73jw_29 span {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

._icon_u73jw_42 { color: #4dabf7; }
._iconSuccess_u73jw_43 { color: #00ff7f; }

._actionBtn_u73jw_45 {
    background: #2c2e33;
    color: #fff;
    border: 1px solid #373a40;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

._actionBtn_u73jw_45:hover {
    background: #373a40;
}

._actionBtnMain_u73jw_61 {
    background: #1971c2;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

._progressContainer_u73jw_72 {
    flex: 1;
    height: 4px;
    background: #2c2e33;
    border-radius: 2px;
    overflow: hidden;
    min-width: 60px;
}

._progressBar_u73jw_81 {
    height: 100%;
    background: #4dabf7;
    transition: width 0.3s ease;
}

._closeBtn_u73jw_87 {
    background: none;
    border: none;
    color: #5c5f66;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

._closeBtn_u73jw_87:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

._spin_u73jw_103 {
    color: #4dabf7;
    animation: _spin_u73jw_103 1s linear infinite;
}

@keyframes _spin_u73jw_103 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* App Layout — Shell, Grid, and Mobile Stack */

._shell_3mqra_5 {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-app);
    color: var(--text-primary);
}

._shellMobile_3mqra_25 {
    padding-bottom: calc(var(--bottom-bar-h) + var(--safe-area-bottom));
}

._shellDesktop_3mqra_35 {
    padding: var(--space-xs);
    gap: var(--space-xs);
}

/* Desktop 2-column grid */
._grid_3mqra_49 {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-xs);
    min-height: 0;
    overflow: hidden;
}

._chartCol_3mqra_67 {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    min-height: 0;
    overflow: hidden;
}

._sidebarCol_3mqra_83 {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    min-height: 0;
    overflow: hidden;
}

/* Chart container */
._chartContainer_3mqra_101 {
    border-radius: var(--radius-md);
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

._chartInner_3mqra_121 {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Mobile tab content area */
._tabContent_3mqra_137 {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
    animation: _fadeIn_3mqra_1 0.2s ease-out;
}

._mobileChartWrap_3mqra_155 {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--space-xs);
    min-height: 0;
}

._fullHeight_3mqra_171 {
    flex: 1;
    overflow: hidden;
}

/* Sidebar tabs (desktop Trade/Market toggle) */
._sidebarTabs_3mqra_183 {
    display: flex;
    background: var(--bg-card);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

._sidebarTab_3mqra_183 {
    flex: 1;
    padding: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    background: transparent;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
}

._sidebarTab_3mqra_183:active {
    background: var(--bg-surface-active);
    transform: scale(0.98);
}

._sidebarTab_3mqra_183:hover {
    color: var(--text-primary);
}

._sidebarTabActive_3mqra_247 {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

/* Trade sidebar content */
._tradeCol_3mqra_261 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    min-height: 0;
    overflow: hidden;
}

._shrink0_3mqra_279 {
    flex-shrink: 0;
}

/* Orders + Positions list section */
._listsSection_3mqra_289 {
    border-radius: var(--radius-md);
    padding: var(--space-xs);
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

._listsScroll_3mqra_313 {
    flex: 1;
    overflow: auto;
}

._listHeading_3mqra_323 {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 4px 4px;
    border-bottom: 1px solid var(--border-subtle);
}


._listHeadingSpaced_3mqra_345 {
    padding-top: 6px;
}

/* Ultrawide 3-column grid */
._ultrawideGrid_3mqra_357 {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 680px 400px;
    gap: var(--space-xs);
    min-height: 0;
    overflow: hidden;
}

._secondaryChartsCol_3mqra_375 {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    min-height: 0;
    overflow: hidden;
}

._secondaryChartItem_3mqra_391 {
    flex: 1;
    min-height: 0;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}


._secondaryChartLabel_3mqra_413 {
    position: absolute;
    top: 6px;
    left: 8px;
    z-index: 10;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    background: var(--bg-surface);
    padding: 2px 6px;
    border-radius: 4px;
    pointer-events: none;
    border: 1px solid var(--border-subtle);
}

/* Overlays */
._overlay_3mqra_445 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: _fadeIn_3mqra_1 0.2s ease-out;
}

._settingsModal_3mqra_469 {
    width: 600px;
    max-width: 90vw;
    height: 600px;
    max-height: 80vh;
    background: var(--bg-panel);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

._modalHeader_3mqra_497 {
    padding: 16px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

._modalTitle_3mqra_513 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

._modalClose_3mqra_525 {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 20px;
}

._modalClose_3mqra_525:hover {
    color: var(--text-primary);
}


/* ═══════════════════════════════════════════
   Skalper Design System — v2.0 (Global Tokens)
   Only CSS variables, resets, and keyframes.
   Component styles live in *.module.css files.
   ═══════════════════════════════════════════ */

:root {
    /* ── Surfaces ── */
    --bg-app: #09090b;
    --bg-card: #141416;
    --bg-panel: #18181b;
    --bg-panel-transparent: rgba(24, 24, 27, 0.65);
    --bg-input: #1c1c1e;
    --bg-elevated: #202023;

    /* ── Borders ── */
    --border-subtle: #27272a;
    --border-default: #2c2c2e;
    --border-highlight: #3f3f46;
    --border-active: #48484a;

    /* ── Brand ── */
    --accent-primary: #818cf8;
    --accent-hover: #6366f1;
    --accent-glow: rgba(129, 140, 248, 0.15);

    /* ── Text ── */
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-muted: #636366;

    /* ── Trading Colors ── */
    --color-up: #34d399;
    --color-up-dim: rgba(52, 211, 153, 0.12);
    --color-down: #f87171;
    --color-down-dim: rgba(248, 113, 113, 0.12);

    /* ── Indicators ── */
    --ema-10: #2962ff;
    --ema-60: #FFD600;
    --ema-223: #9c27b0;
    --color-pd: #ffd700;
    --color-be: #00ffff;

    /* ── Sizing ── */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;

    /* ── Layout ── */
    --bottom-bar-h: 56px;
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* ═══════════════════════════════════════════
   Base Reset
   ═══════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-app);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button {
    font-family: inherit;
}

/* ═══════════════════════════════════════════
   Shared Utilities (global)
   ═══════════════════════════════════════════ */

.mono-num {
    font-family: 'JetBrains Mono', monospace;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.glass-panel {
    background: var(--bg-panel-transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-top: 1px solid var(--border-highlight);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    color: var(--text-muted);
    font-size: 11px;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════
   Scrollbar
   ═══════════════════════════════════════════ */

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-highlight);
}

/* ═══════════════════════════════════════════
   Keyframe Animations
   ═══════════════════════════════════════════ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes flashGreen {
    0% {
        background-color: rgba(52, 211, 153, 0.25);
    }

    100% {
        background-color: transparent;
    }
}

@keyframes flashRed {
    0% {
        background-color: rgba(248, 113, 113, 0.25);
    }

    100% {
        background-color: transparent;
    }
}

@keyframes subtlePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(129, 140, 248, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(129, 140, 248, 0.5);
    }
}