#nms-toast-area{
  position:fixed;top:12px;right:12px;display:flex;flex-direction:column;gap:10px;
  z-index:2147483647;pointer-events:none;
}
.nms-toast{
  background:#111;color:#fff;min-width:260px;max-width:360px;padding:12px 14px;border-radius:10px;
  box-shadow:0 8px 30px rgba(0,0,0,.35);opacity:0;transform:translateY(-6px);
  transition:opacity .2s ease,transform .2s ease;pointer-events:auto;font:inherit;
}
.nms-toast.show{opacity:1;transform:translateY(0)}
.nms-toast .head{font-weight:600;margin-bottom:4px;display:flex;align-items:center;gap:8px}
.nms-toast .dot{width:8px;height:8px;border-radius:50%;display:inline-block}
.nms-toast .dot.ok{background:#2ecc71}
.nms-toast .dot.err{background:#e74c3c}
.nms-toast .body{font-size:.95rem;opacity:.9;white-space:pre-line}