.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  z-index: 99999;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  min-width: 280px;
  max-width: 420px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  animation: toastIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.toast-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.toast-message {
  line-height: 1.3;
}

.toast-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: 1px solid rgba(255,255,255,0.15);
}

.toast-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: 1px solid rgba(255,255,255,0.15);
}

.toast-info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: 1px solid rgba(255,255,255,0.15);
}

.toast-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: 1px solid rgba(255,255,255,0.15);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
