/**
 * Shared 24×24 ticker logo slot (Clearbit + initials fallback) for autocomplete dropdowns.
 */

.ticker-dd-logo-wrap {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-dd-logo-wrap img {
  border-radius: 4px;
  object-fit: contain;
  display: block;
}

.ticker-initials-fallback {
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  background: rgba(91, 164, 207, 0.14);
  border: 1px solid rgba(91, 164, 207, 0.22);
  color: var(--teal-light, #5BA4CF);
}

html[data-theme="pro"] .ticker-initials-fallback {
  color: var(--teal-deep, #0b3a3a);
  border-color: rgba(45, 85, 90, 0.25);
  background: rgba(91, 164, 207, 0.12);
}
