#custom-install-popUp {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  direction: rtl;
  font-family: "Cairo", sans-serif;
  align-items: center;
  justify-content: center;
}

#custom-install-popUp.active {
  display: flex;
}

#custom-install-popUp .popUp-content {
  background: #fffaf3;
  border: 1px solid #e6d9c8;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  width: 270px;
}

#custom-install-popUp .popUp-content p {
  font-size: 13px;
  color: var(--accentGreen);
}

#custom-install-popUp .popUp-content span {
  font-size: 14px;
  color: var(--dark1);
}

#custom-install-popUp .buttons {
  display: flex;
  gap: 8px;
}

#custom-install-popUp button {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
}

#custom-install-popUp button:first-child {
  background: var(--primary);
  color: #fff;
  border: none;
}

#custom-install-popUp button:last-child {
  background: transparent;
  color: var(--dark3);
  border: 1px solid var(--dark3);
}
