#ptoast-wadah{
    position:fixed;
    top:20px;
    right:20px;
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.ptoast{
    min-width:280px;
    max-width:420px;
    padding:8px 10px;
    border-radius:10px;
    color:#fff;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    font-weight:500;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    white-space:normal;
    word-break:break-word;
    opacity:0;
    transform:translateX(100%);
    transition:all .25s ease;
}

.ptoast.tampil{
    opacity:1;
    transform:translateX(0);
}

.ptoast-ikon{
    font-size:18px;
    flex-shrink:0;
}

.ptoast.berhasil{
    background:#16a34a;
}

.ptoast.gagal{
    background:#dc2626;
}

.ptoast.peringatan{
    background:#f59e0b;
}

.ptoast.pengumuman{
    background:#2563eb;
}