/* ---------- Symbol search combobox ---------- */
.symbol-combobox { position: relative; }
.symbol-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 20;
  max-height: 280px; overflow-y: auto;
  background: var(--surface-hi);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  padding: 6px;
  box-shadow: var(--shadow);
}
.symbol-suggestion {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm); cursor: pointer;
  transition: background 0.15s;
}
.symbol-suggestion:hover, .symbol-suggestion.highlighted { background: rgba(56,189,248,0.1); }
.symbol-suggestion-sym {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--text);
  white-space: nowrap;
}
.symbol-suggestion-name {
  font-size: 11.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; text-align: right;
}
