/* Add custom CSS styles below */ /* صندوق الإشعارات */
#zonefire-notify {
  position: fixed;
  bottom: 25px;
  right: 25px;   /* تحت يمين */
  z-index: 9999;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

/* البوكس */
.zonefire-box {
  background: linear-gradient(135deg, #f5e1cd, #f9e0ca);
  color: #2b1f17;
  padding: 14px 18px;
  margin-top: 12px;
  border-radius: 14px;
  min-width: 230px;
  max-width: 280px;

  font-size: 13.5px;
  line-height: 1.5;

  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.05);

  opacity: 0;
  animation: zonefire-popup 6s ease forwards;
}

/* اسم العميل */
.zonefire-box strong {
  font-weight: 600;
  color: #3a2a1f;
}

/* حركة ناعمة */
@keyframes zonefire-popup {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  15% {
    opacity: 1;
    transform: translateX(0);
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(40px);
  }
}