/* Basic styling for toast notifications */
#toastContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.toast {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 16px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s, transform 0.5s;
}

/* Show toast when added */
.toast.show {
  opacity: 1;
  transform: translateX(0);
}
