#toaster-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}


.toast {
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: none;
}

.toast.success {
  background-color: #4CAF50; /* Green */
  color: #fff;
}

.toast.error {
  background-color: #f44336; /* Red */
  color: #fff;
}