/* ----- Install Box ----- */
#installBox {
  display: none;
  position: relative;
  width: 90%;           /* mobilon ne legyen túl széles */
  max-width: 480px;
  margin: 0 auto;       /* középre igazítás */
  background: rgba(0, 200, 0, 0.2); /* enyhén áttetsző zöld */
  backdrop-filter: blur(8px);       /* enyhe elmosás a háttér mögött */
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 14px;
  font-family: "Segoe UI", Arial, sans-serif;
  z-index: 9999;
  animation: slideDown 0.5s ease;
  box-sizing: border-box;
}

#installBox .content {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* a szöveg balra marad */
  gap: 35px; /* tetszőleges távolság a logo és szöveg között */}

#installBox .left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

#installBox img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

#installBox .right button {
  background: #0078d7;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

#installBox .right button:hover {
  background: #005fa3;
}

/* Desktopon elrejtjük a modált */
@media (min-width: 992px) {
  #installBox {
    display: none;
  }
}
