
.alirtify-toast{
  position: fixed;
  top:20px;
  right:-300px;
  min-width:200px;
  padding:15px;
  background:#333;
  color:#fff;
  border-radius:8px;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
  transition: all .3s ease;
  z-index:9999;
}
.alirtify-toast.show{
  right:20px;
}
.alirtify-toast.success{ background:#28a745; }
.alirtify-toast.error{ background:#dc3545; }
