#notif-toast-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: "Cairo", sans-serif;
  direction: rtl;
}

.notif-toast-box {
  width: 270px;
  height: 170px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease-in-out;
}

#notif-toast-message {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--dark1);
}

#notif-toast-close {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
