.searchWrapper {
  margin-bottom: 16px;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 400px;
  overflow-y: auto;
}

.item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: none;
  border-radius: var(--ta-border-radius-l);
  cursor: pointer;
  transition: background-color 0.15s;
  text-align: left;
}

.item:hover {
  background: var(--ta-color-background-secondary);
}

.tokenIcon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.tokenInfo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.tokenSymbol {
  composes: bodySemibold from "../../../../styles/typography.module.css";
  color: var(--ta-color-text);
}

.tokenName {
  composes: footnoteRegular from "../../../../styles/typography.module.css";
  color: var(--ta-color-text-secondary);
}

.tokenBalance {
  composes: bodyRegular from "../../../../styles/typography.module.css";
  color: var(--ta-color-text-secondary);
  flex-shrink: 0;
}
