/* 狀態標籤顏色（純 CSS，CDN 不支援 @apply） */
.badge-unverified {
  background-color: #6b7280;
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}
.badge-approved {
  background-color: #3b82f6;
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}
.badge-purchased {
  background-color: #22c55e;
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}
.badge-blacklist {
  background-color: #ef4444;
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

/* Toast */
#toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
}
#toast.success { background: #059669; color: white; }
#toast.error   { background: #dc2626; color: white; }
