.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100000;
  font-family: 'Outfit', sans-serif;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
  max-width: 400px;
}
.toast.show { transform: translateX(0); }
.toast.hide { transform: translateX(120%); }
.toast-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.toast-error { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.toast-info { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }
.toast i { font-size: 1.2rem; }
.toast-success i { color: #28a745; }
.toast-error i { color: #dc3545; }
.toast-info i { color: #17a2b8; }
