.custom-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 1000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
}
.custom-toast.success {
  background: green;
}
.custom-toast.error {
  background: red;
}
