#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  color: #222;
  background: #fff;
  border-left: 4px solid #ff8c00;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  opacity: 100;
  transform: translateY(30px) scale(0.95);
  animation: toastIn 0.35s ease forwards;
}

.toast.success { border-left-color: #ff8c00; }
.toast.error { border-left-color: #e53935; }
.toast .icon svg { display: block; }
.toast .text { line-height: 1.4; }

@keyframes toastIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  to { opacity: 0; transform: translateY(20px) scale(0.95); }
}