#mora-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.mora-toast {
  min-width: 220px;
  margin-bottom: 10px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  background-color: #333;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(-20px);
  animation: slideIn 0.4s forwards, fadeOut 0.5s ease 3.5s forwards;
}


.mora-toast.success { background-color: #4BB543; color: #fff; }
.mora-toast.error { background-color: #D8000C; color: #fff; }
.mora-toast.info { background-color: #00529B; color: #fff; }
.mora-toast.warning { background-color: #9F6000; color: #fff; }


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

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
