#pwa-install-box {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 99999;
  font-family: Arial, Helvetica, sans-serif;
}

.pwa-card{
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255,255,255,.96);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    padding: 20px;
}

.pwa-main{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.pwa-icon{
    width:64px;
    height:64px;
    border-radius:16px;
    flex-shrink:0;
}

.pwa-content{
    flex:1;
}

.pwa-content strong{
    display:block;
    font-size:20px;
    margin-bottom:5px;
    color:#111;
}

.pwa-content span{
    font-size:14px;
    color:#666;
    line-height:1.4;
}

.pwa-close{
    position:absolute;
    top:12px;
    right:15px;
    width:32px;
    height:32px;
    border:none;
    background:none;
    font-size:26px;
    font-weight:bold;
    cursor:pointer;
    color:#666;
}

.pwa-text-ios {
  display: none;
}

.pwa-install-btn {
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}


@media (max-width: 480px) {
  .pwa-card {
    padding: 13px 12px;
    border-radius: 18px;
  }

  .pwa-install-btn {
    padding: 9px 13px;
  }
}
.pwa-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  width: 100%;
  margin-top: 14px;
}

.pwa-later-btn {
  border: 0;
  border-radius: 999px;
  background: #e5e5e5;
  color: #111;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.pwa-install-btn {
  min-width: 110px;
}