/* Popup instalasi PWA — dipakai halaman yang tidak memuat style.css */
.pwa-install {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center; 
  z-index: 99999;
  box-sizing: border-box;
  padding: 16px;
}

.pwa-install,
.pwa-install * {
  box-sizing: border-box;
}

#installBtn {
  background: #0e2a98;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 1rem;
}

.pwa-card {
  position: relative;
  background: #fff;
  padding: 25px;
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pwa-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #777;
  line-height: 1;
  border: none;
  background: none;
  padding: 4px;
}

.pwa-close:hover {
  color: #000;
}
