    .watchlist-app {
        all: initial;
        display: block;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        background: #000000;
        color: #eef2f7;
        height: 100%;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    .watchlist-app * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    .watchlist-app .watchlist {
        height: 100%;
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: #000000;
    }
    
    /* MT5 List Item Style (Cards & BG Removed) */
    .watchlist-app .watchlist-card {
        background: transparent;
        border-radius: 0;
        padding: 10px 14px;
        margin-bottom: 0;
        border: none;
        border-bottom: 1px solid #121212;
        display: flex;
        flex-direction: column;
        gap: 2px;
        cursor: pointer;
        transition: background 0.1s;
        position: relative;
    }
    .watchlist-app .watchlist-card:active { background: #111111; }
    
    .watchlist-app .card-change {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: -0.2px;
        display: inline-flex;
        gap: 4px;
    }
    .watchlist-app .card-change.positive { color: #2196F3; } /* MT5 Blue/Green tint */
    .watchlist-app .card-change.negative { color: #f44336; }
    
    .watchlist-app .card-row-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .watchlist-app .card-row-1 .symbol {
        font-weight: 600;
        font-size: 15px;
        color: #ffffff;
        letter-spacing: 0.2px;
    }
    .watchlist-app .card-row-1 .price {
        font-weight: 500;
        font-size: 16px;
        font-variant-numeric: tabular-nums;
        font-family: monospace, sans-serif;
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .watchlist-app .card-row-1 .price .bid { color: #b0bec5; }
    .watchlist-app .card-row-1 .price .ask { color: #2196F3; } /* MT5 Ask price blue color */
    .watchlist-app .card-row-1 .price .sep { color: #424242; font-weight: 300; }
    
    .watchlist-app .card-row-2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 11px;
        font-variant-numeric: tabular-nums;
        color: #757575;
        margin-top: 1px;
    }
    .watchlist-app .card-row-2 .volume {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .watchlist-app .card-row-2 .volume i { color: #616161; font-size: 10px; }
    .watchlist-app .card-row-2 .highlow {
        display: flex;
        gap: 10px;
    }
    .watchlist-app .card-row-2 .highlow .low { color: #ef9a9a; }
    .watchlist-app .card-row-2 .highlow .high { color: #a5d6a7; }

    .watchlist-app .loading {
        text-align: center;
        padding: 60px 20px;
        color: #757575;
        font-size: 14px;
        background: #000000;
    }
    .watchlist-app .loading i { font-size: 30px; display: block; margin-bottom: 12px; color: #2196F3; }
    
    .watchlist-app .empty-state {
        text-align: center;
        padding: 60px 20px;
        color: #757575;
        background: #000000;
    }
    .watchlist-app .empty-state i {
        font-size: 48px;
        color: #212121;
        margin-bottom: 12px;
        display: block;
    }
    .watchlist-app .empty-state h3 {
        font-size: 16px;
        color: #e0e0e0;
        margin-bottom: 4px;
    }
    .watchlist-app .empty-state p {
        font-size: 13px;
        max-width: 260px;
        margin: 0 auto 16px;
        line-height: 1.4;
    }
    .watchlist-app .empty-state .btn-add-big {
        background: #2196F3;
        border: none;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        padding: 10px 24px;
        border-radius: 4px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .watchlist-app .error-state {
        text-align: center;
        padding: 60px 20px;
        color: #f44336;
        background: #000000;
    }

    /* MODAL (Add Symbol - MT5 Dark Style) */
    .watchlist-app .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        display: none;
        align-items: flex-end;
        justify-content: center;
        z-index: 10000;
    }
    .watchlist-app .modal-overlay.active { display: flex; }
    .watchlist-app .modal {
        background: #121212;
        border-radius: 12px 12px 0 0;
        width: 100%;
        max-width: 480px;
        height: 90vh;
        display: flex;
        flex-direction: column;
        border-top: 1px solid #212121;
        overflow: hidden;
    }
    .watchlist-app .modal-handle {
        width: 32px;
        height: 4px;
        background: #424242;
        border-radius: 2px;
        margin: 8px auto 4px;
        flex-shrink: 0;
    }
    .watchlist-app .modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 16px;
        border-bottom: 1px solid #212121;
        background: #121212;
    }
    .watchlist-app .modal-header h3 {
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #ffffff;
    }
    .watchlist-app .modal-header h3 i { color: #2196F3; }
    .watchlist-app .modal-close {
        background: transparent;
        border: none;
        color: #9e9e9e;
        font-size: 22px;
        cursor: pointer;
    }
    .watchlist-app .modal-search {
        padding: 10px 16px;
        border-bottom: 1px solid #212121;
        background: #121212;
    }
    .watchlist-app .modal-search .search-box {
        display: flex;
        align-items: center;
        background: #1e1e1e;
        border-radius: 4px;
        padding: 6px 12px;
        gap: 8px;
        border: 1px solid #333333;
    }
    .watchlist-app .modal-search .search-box:focus-within { border-color: #2196F3; }
    .watchlist-app .modal-search .search-box i { color: #9e9e9e; font-size: 13px; }
    .watchlist-app .modal-search .search-box input {
        background: transparent;
        border: none;
        outline: none;
        color: #ffffff;
        font-size: 14px;
        width: 100%;
    }
    .watchlist-app .modal-body {
        flex: 1;
        overflow-y: auto;
        background: #121212;
    }
    .watchlist-app .search-results .search-item,
    .watchlist-app .modal-symbol-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        border-bottom: 1px solid #1a1a1a;
        gap: 8px;
    }
    .watchlist-app .search-results .search-item:active,
    .watchlist-app .modal-symbol-item:active { background: #1c1c1c; }
    .watchlist-app .search-results .search-item .info,
    .watchlist-app .modal-symbol-item .info {
        display: flex;
        flex-direction: column;
        gap: 1px;
        flex: 1;
        min-width: 0;
    }
    .watchlist-app .search-results .search-item .info .name,
    .watchlist-app .modal-symbol-item .info .name {
        font-weight: 600;
        font-size: 14px;
        color: #ffffff;
    }
    .watchlist-app .search-results .search-item .info .desc,
    .watchlist-app .modal-symbol-item .info .desc {
        font-size: 11px;
        color: #757575;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .watchlist-app .modal-category-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        cursor: pointer;
        background: #181818;
        border-bottom: 1px solid #212121;
        position: sticky;
        top: 0;
        z-index: 20;
    }
    .watchlist-app .modal-category-header .left {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 13px;
        color: #e0e0e0;
    }
    .watchlist-app .modal-category-header .left i { color: #ffb300; font-size: 14px; }
    .watchlist-app .modal-category-header .count {
        font-size: 11px;
        background: #212121;
        padding: 2px 8px;
        border-radius: 10px;
        color: #9e9e9e;
    }
    .watchlist-app .modal-category-header .count .added { color: #2196F3; }
    .watchlist-app .modal-symbol-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #121212;
    }
    .watchlist-app .modal-symbol-list.open { max-height: 1000px; }
    
    .watchlist-app .add-btn {
        background: transparent;
        border: 1px solid #424242;
        color: #9e9e9e;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .watchlist-app .add-btn.added {
        border-color: #4caf50;
        color: #4caf50;
        background: rgba(76, 175, 80, 0.1);
    }

    /* TOAST */
    .watchlist-app .toast-container {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 360px;
        z-index: 9999;
        pointer-events: none;
    }
    .watchlist-app .toast {
        background: #212121;
        border: 1px solid #333333;
        padding: 10px 16px;
        border-radius: 4px;
        color: #ffffff;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    .watchlist-app .toast.success i { color: #4caf50; }
    .watchlist-app .toast.error i { color: #f44336; }
    .watchlist-app .toast.info i { color: #2196F3; }

    /* POPUP (MT5 Action Sheet) */
    .wl-popup-overlay {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.8) !important;
        display: none !important;
        align-items: flex-end !important;
        justify-content: center !important;
        z-index: 999999 !important;
    }
    .wl-popup-overlay.active { display: flex !important; }
    .wl-popup-sheet {
        background: #121212 !important;
        border-radius: 12px 12px 0 0 !important;
        width: 100% !important;
        max-width: 480px !important;
        padding: 16px 20px 24px 20px !important;
        border-top: 1px solid #222222 !important;
    }
    .wl-popup-handle {
        width: 36px !important;
        height: 4px !important;
        background: #424242 !important;
        border-radius: 2px !important;
        margin: 0 auto 14px auto !important;
    }
    .wl-popup-symbol {
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        text-align: center !important;
        margin-bottom: 2px !important;
    }
    .wl-popup-name {
        font-size: 12px !important;
        color: #757575 !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }
    .wl-popup-price {
        text-align: center !important;
        font-size: 24px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        font-family: monospace !important;
        margin-bottom: 2px !important;
    }
    .wl-popup-change {
        text-align: center !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        margin-bottom: 12px !important;
    }
    .wl-popup-change.positive { color: #2196F3 !important; }
    .wl-popup-change.negative { color: #f44336 !important; }
    .wl-popup-details {
        display: flex !important;
        justify-content: space-around !important;
        padding: 10px 0 16px 0 !important;
        border-top: 1px solid #1a1a1a !important;
        border-bottom: 1px solid #1a1a1a !important;
        margin-bottom: 16px !important;
    }
    .wl-popup-details .wl-detail-item .wl-label {
        font-size: 10px !important;
        color: #757575 !important;
        text-transform: uppercase !important;
    }
    .wl-popup-details .wl-detail-item .wl-value {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        font-family: monospace !important;
        margin-top: 2px !important;
    }
    .wl-popup-actions {
        display: flex !important;
        gap: 10px !important;
    }
    .wl-popup-actions .wl-btn-popup {
        flex: 1 !important;
        padding: 12px 0 !important;
        border-radius: 4px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        border: none !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
    }
    .wl-popup-actions .wl-btn-trade {
        background: #2196F3 !important;
        color: #fff !important;
    }
    .wl-popup-actions .wl-btn-chart {
        background: #212121 !important;
        color: #ffffff !important;
        border: 1px solid #333333 !important;
    }
    .wl-popup-close {
        background: transparent !important;
        border: none !important;
        color: #757575 !important;
        font-size: 20px !important;
        cursor: pointer !important;
        position: absolute !important;
        top: 12px !important;
        right: 16px !important;
    }

    /* Desktop View Grid adjustment for list layout */
   /* Desktop View Grid adjustment for list layout */
    @media (min-width: 600px) {
        .watchlist-app .watchlist {
            display: block;
        }
        
        /* Desktop ke liye compact padding aur gap */
        .watchlist-app .watchlist-card {
            padding: 5px 10px;
            gap: 1px;
        }

        /* Symbol font size chhota */
        .watchlist-app .card-row-1 .symbol {
            font-size: 13px;
        }

        /* Price font size chhota aur paas */
        .watchlist-app .card-row-1 .price {
            font-size: 13px;
            gap: 4px;
        }

        /* Row 2 (Volume / High-Low) font size chhota */
        .watchlist-app .card-row-2 {
            font-size: 10px;
        }

        /* Change percentage tag chhota */
        .watchlist-app .card-change {
            font-size: 10px;
        }
    }
    
    button, .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--accent-color, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.2s ease, opacity 0.2s ease;
}

button:hover, .btn:hover {
    opacity: 0.9;
}

button:active, .btn:active {
    transform: scale(0.98);
}