.toast-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.toast {
  min-width: 280px;
  max-width: 360px;
  background: rgba(15, 23, 42, 0.94);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  animation: toast-enter 220ms ease;
}

.toast strong {
  display: block;
  margin-bottom: 6px;
}

.toast p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
  font-size: 0.94rem;
}

@keyframes toast-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
