/* ---------- Watchlist star button ---------- */
.star-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 19px; cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.star-btn:hover { color: var(--neutral); border-color: rgba(251,191,36,0.4); }
.star-btn.active { color: var(--neutral); background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.45); }

/* ---------- Watchlist panel ---------- */
.watchlist-section { margin-bottom: 20px; }
.watchlist-section-title {
  font-size: 10.5px; color: var(--muted); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px;
}
.watchlist-panel { display: flex; gap: 8px; flex-wrap: wrap; }
.watchlist-empty { font-size: 12.5px; color: var(--muted); font-style: italic; }
.watchlist-chip { display: inline-flex; align-items: center; gap: 8px; }
.watchlist-remove {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 10px; padding: 0;
  transition: color 0.2s;
}
.watchlist-remove:hover { color: var(--bearish); }
