.mse-toast-wrap{
  position:fixed;
  left:50%;
  bottom:calc(88px + env(safe-area-inset-bottom, 0px));
  transform:translateX(-50%);
  z-index:1200;
  display:flex;
  flex-direction:column;
  gap:10px;
  pointer-events:none;
}
.mse-toast{
  min-width:240px;
  max-width:min(92vw, 420px);
  background:#fff;
  border-radius:14px;
  border:1px solid #dcfce7;
  box-shadow:0 10px 30px rgba(2,8,23,.16);
  color:#065f46;
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.92rem;
  font-weight:600;
  opacity:0;
  transform:translateY(8px);
  animation:mseToastIn .16s ease forwards;
}
.mse-toast--error{border-color:#fecaca;color:#991b1b}
.mse-toast--info{border-color:#bfdbfe;color:#1e3a8a}
.mse-toast__icon{width:20px;height:20px;display:inline-flex;align-items:center;justify-content:center;font-size:15px}
.mse-toast--out{animation:mseToastOut .18s ease forwards}
@keyframes mseToastIn{to{opacity:1;transform:translateY(0)}}
@keyframes mseToastOut{to{opacity:0;transform:translateY(8px)}}
