#smc-pwa-prompt.smc-pwa-prompt{
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  z-index: 999999;
  width: calc(100% - 40px);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  text-align: center;
}

#smc-pwa-prompt::before{
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: -1;
}

#smc-pwa-prompt .smc-pwa-icon{
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
  background: #f2f2f2;
}

#smc-pwa-prompt .smc-pwa-content{
  flex: 1 1 auto;
  min-width: 0;
}

#smc-pwa-prompt .smc-pwa-title{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
  color: #111;
}

#smc-pwa-prompt .smc-pwa-text{
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

#smc-pwa-prompt .smc-pwa-actions{
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

#smc-pwa-prompt .smc-pwa-btn{
  border: 0;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  background: #0a58ca;
  color: #fff;
  cursor: pointer;
}

#smc-pwa-prompt .smc-pwa-later{
  background: #eef3fb;
  color: #0a58ca;
}

@media (max-width: 480px){
  #smc-pwa-prompt.smc-pwa-prompt{
    width: calc(100% - 24px);
    padding: 16px;
    gap: 12px;
  }

  #smc-pwa-prompt .smc-pwa-title{
    font-size: 18px;
  }

  #smc-pwa-prompt .smc-pwa-text{
    font-size: 13px;
  }

  #smc-pwa-prompt .smc-pwa-actions{
    flex-direction: column;
  }

  #smc-pwa-prompt .smc-pwa-btn{
    width: 100%;
  }
}