#toast {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  z-index: 1000; /* Set a higher z-index value */
  width: 50%;
  text-align: center;
}
  #toast.success {
    background-color: #4CAF50; /* Green background for success */
    color: #fff;
  }
  #toast.error {
    background-color: #FF5733; /* Red background for error */
    color: #fff;
  }
