.watchlist-toggle {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: color-mix(in srgb, var(--muted) 78%, var(--text));
  cursor: pointer;
  transition: color .16s ease, background-color .16s ease, transform .16s ease, opacity .16s ease;
}

.watchlist-toggle:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  color: var(--brand);
}

.watchlist-toggle:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--brand) 46%, transparent);
  outline-offset: 2px;
}

.watchlist-toggle.is-active {
  color: #e0ad2d;
}

.watchlist-toggle.is-busy {
  opacity: .58;
  pointer-events: none;
}

.watchlist-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.watchlist-toggle.is-active svg {
  fill: currentColor;
}

.watchlist-toggle--asset {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--ghost-bg) 76%, var(--panel));
}

.watchlist-toggle--asset svg {
  width: 24px;
  height: 24px;
}

.market-watchlist-col,
.screener-watchlist-col,
.market-watchlist-cell,
.screener-watchlist-cell {
  width: 44px;
  min-width: 44px;
  text-align: center;
}

.market-watchlist-cell,
.screener-watchlist-cell {
  padding-left: 8px;
  padding-right: 4px;
}

.watchlist-toggle--row {
  margin-inline: auto;
}

.watchlist-toggle--card {
  margin-left: -4px;
}
