.iscl-lpp-container{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.iscl-lpp-toast{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(90vw, 340px);
  background: #111827;
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: auto;
  border: 1px solid rgba(255,255,255,.08);
}

.iscl-lpp-icon{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: 16px;
}

.iscl-lpp-text{
  line-height: 1.3;
  font-size: 14px;
}

.iscl-lpp-enter{
  transition: transform .3s ease, opacity .3s ease;
  transform: translateY(0);
  opacity: 1;
}

.iscl-lpp-leave{
  transition: transform .3s ease, opacity .3s ease;
  transform: translateY(12px);
  opacity: 0;
}

@media (max-width: 768px){
  .iscl-lpp-container{ bottom: 110px; right: 12px; }
}

@media (max-width: 480px){
  .iscl-lpp-container{ bottom: 120px; right: 10px; left: auto; }
  .iscl-lpp-toast{ max-width: 92vw; }
}