.wrs-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100000;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wrs-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.wrs-toast--ok {
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
}

.wrs-toast--err {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

@media (max-width: 480px) {
  .wrs-toast {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
