#withdraw-toast {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  z-index: 9999;
  font-weight: bold;
  border: 2px solid gold;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#withdraw-toast span {
  color: lightgreen;
}
