/**
 * Watchlist button and dashboard styles.
 */

.watchlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.watchlist-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e0;
}

.watchlist-btn.is-watching {
  background: #ecfdf5;
  border-color: #6ee7b7;
  color: #065f46;
}

.watchlist-btn.is-watching:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

/* Value guide watch button */
.watchlist-btn--value {
  margin-top: 12px;
}

/* Toast confirmation */
.watchlist-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 10px 16px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #065f46;
  animation: watchlist-toast-in 0.2s ease;
}

.watchlist-toast a {
  color: #2c5282;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.watchlist-toast a:hover {
  text-decoration: underline;
}

.watchlist-toast--fade {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes watchlist-toast-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .watchlist-btn {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}
