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

/* Toast style */
.toast {
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  min-width: 220px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  animation: fadeInOut 4s ease forwards;
}

.toast-success {
  background-color: #28a745; /* green */
}

.toast-error {
  background-color: #dc3545; /* red */
}

/* Animation */
@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  10% {
    opacity: 1;
    transform: translateX(0);
  }
  90% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
