/* toast.css */

#ll-toast.ll-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  max-width: 90vw;
  box-shadow: 0 10px 36px rgba(0,0,0,.35);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
#ll-toast.ll-toast.is-visible { opacity: 1; }
