.toast-container {
  position: fixed;
  top: 3rem;
  right: 1rem;
  z-index: 9999;
}

.toast {
  background-color: #323232;
  color: #fff;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
