/* =====================================
   INSTALL APP POPUP
===================================== */

#updatePopupOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999999;
    padding:20px;
}

.sbpInstallPopup{
    width:100%;
    max-width:480px;
    background:#ffffff;
    border-radius:20px;
    padding:28px;
    text-align:center;
    position:relative;
    box-shadow:0 15px 50px rgba(0,0,0,.35);
}

.sbpInstallClose{
    position:absolute;
    right:14px;
    top:12px;
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    background:#f3f4f6;
    border-radius:50%;
    font-size:22px;
}

.sbpInstallIcon{
    font-size:52px;
    margin-bottom:12px;
}

.sbpInstallTitle{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
    color:#111827;
}

.sbpInstallText{
    font-size:14px;
    line-height:1.6;
    color:#4b5563;
    margin-bottom:18px;
}

.sbpInstallStatus{
    padding:12px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.sbpInstallStatus.update{
    background:#fff7ed;
    color:#9a3412;
}

.sbpInstallStatus.active{
    background:#ecfdf5;
    color:#166534;
}

.sbpInstallBtn{
    width:100%;
    padding:12px;
    border:none;
    border-radius:12px;
    background:#111827;
    color:#ffffff;
    font-weight:600;
    cursor:pointer;
}