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

.symbol-avatar {
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 22px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--symbol-fallback-bg, #64748b);
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.symbol-avatar.has-error::before {
  content: attr(data-letter);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.symbol-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.symbol-logo.is-hidden {
  display: none;
}

.symbol-text {
  white-space: nowrap;
  position: relative;
  /* padding-left: 8px; */
}

.symbol-text::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);

  width: 1px;
  height: 14px;

  background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {

  .symbol-avatar {
    width: 26px;
    height: 26px;
  }

.symbol-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

  .symbol-cell {
    gap: 4px; 
  }
  
  .symbol-text::before {
    display: none;
  }

}