/* إشعار "تم الحفظ" — نفس أسلوب الصورة المرجعية */
#alufuq-save-toast {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  direction: rtl;
  padding: 10px 16px 10px 18px;
  border-radius: 999px;
  background: #f3faf5;
  border: 1px solid #b7e3c6;
  box-shadow: 0 8px 24px rgba(35, 90, 55, 0.14);
  color: #1f6b4a;
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
#alufuq-save-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
#alufuq-save-toast .alufuq-save-toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22a06b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#alufuq-save-toast .alufuq-save-toast-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}
#alufuq-save-toast .alufuq-save-toast-text {
  white-space: nowrap;
}
html[data-theme="dark"] #alufuq-save-toast {
  background: #edf8f1;
  border-color: #a9dbbc;
  color: #1c6144;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
