.xyb-toast-wrap {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.xyb-toast {
  display: inline-block;
  max-width: min(80vw, 360px);
  padding: 10px 20px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  word-break: break-word;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.xyb-toast.is-show {
  opacity: 1;
  transform: scale(1);
}

.xyb-toast.is-hide {
  opacity: 0;
  transform: scale(0.9);
}
