/* © muathemewpgiare.com – Toast CSS v3.0.0 */
#mfs-toast-container{position:fixed;z-index:999999;display:flex;flex-direction:column;gap:8px;max-width:360px;pointer-events:none;}
#mfs-toast-container.mfs-toast-top-right{top:20px;right:20px;}
#mfs-toast-container.mfs-toast-top-left{top:20px;left:20px;}
#mfs-toast-container.mfs-toast-bottom-right{bottom:20px;right:20px;}
#mfs-toast-container.mfs-toast-bottom-left{bottom:20px;left:20px;}
#mfs-toast-container.mfs-toast-top-center{top:20px;left:50%;transform:translateX(-50%);}
#mfs-toast-container.mfs-toast-bottom-center{bottom:20px;left:50%;transform:translateX(-50%);}
.mfs-toast{padding:14px 20px;border-radius:12px;box-shadow:0 8px 30px rgba(0,0,0,.12);color:#fff;font-size:14px;font-weight:500;display:flex;align-items:center;gap:10px;pointer-events:auto;animation:mfsToastIn .4s cubic-bezier(.68,-.55,.27,1.55);backdrop-filter:blur(10px);line-height:1.5;}
.mfs-toast.mfs-toast-out{animation:mfsToastOut .3s ease forwards;}
.mfs-toast-success{background:linear-gradient(135deg,#10b981,#059669);}
.mfs-toast-error{background:linear-gradient(135deg,#ef4444,#dc2626);}
.mfs-toast-warning{background:linear-gradient(135deg,#f59e0b,#d97706);}
.mfs-toast-info{background:linear-gradient(135deg,#6366f1,#4f46e5);}
.mfs-toast-icon{font-size:20px;flex-shrink:0;}
.mfs-toast-close{margin-left:auto;cursor:pointer;opacity:.7;font-size:18px;padding:0 4px;}
.mfs-toast-close:hover{opacity:1;}
.mfs-toast-progress{position:absolute;bottom:0;left:0;height:3px;border-radius:0 0 12px 12px;background:rgba(255,255,255,.3);transition:width linear;}
@keyframes mfsToastIn{from{opacity:0;transform:translateY(20px) scale(.95);}to{opacity:1;transform:translateY(0) scale(1);}}
@keyframes mfsToastOut{to{opacity:0;transform:translateY(-10px) scale(.95);}}
