.easy-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 14px 30px;
  border: 2px solid white;
  border-radius: 24px;
  min-width: 48px;
  text-align: center;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999999;
}

  .easy-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
  }
