.stramio-toast-stack {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: min(22rem, calc(100vw - 2rem));
  pointer-events: none;
}

.stramio-toast {
  pointer-events: auto;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  line-height: 1.4;
  animation: stramio-toast-in 0.2s ease-out;
}

.stramio-toast--ok {
  border-color: var(--success);
  background: var(--success-soft);
  color: var(--success);
}

.stramio-toast--error {
  border-color: var(--error);
  background: var(--error-soft);
  color: var(--error);
}

.stramio-toast--info {
  color: var(--text);
}

@keyframes stramio-toast-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
