/* ============================================
   SYMBOL SELECTOR STYLES
   ICT Analyzer Pro V29.5
============================================ */

.symbol-list {
    max-height: 400px;
    overflow-y: auto;
}

.symbol-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.symbol-item:hover {
    background: var(--bg-hover);
}

.symbol-item.selected {
    background: rgba(240, 185, 11, 0.15);
    border: 1px solid var(--accent-yellow);
}

.symbol-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.symbol-item-info {
    flex: 1;
}

.symbol-item-name {
    font-weight: 600;
    color: var(--text-primary);
}

.symbol-item-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.symbol-item-price {
    text-align: left;
}

.symbol-item-price-value {
    font-weight: 600;
    color: var(--text-primary);
}

.symbol-item-price-change {
    font-size: 0.75rem;
}

.symbol-item-price-change.positive { color: var(--buy-green); }
.symbol-item-price-change.negative { color: var(--sell-red); }
