#pwa-update-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}
#pwa-update-modal.show {
    display: flex;
}
.pwa-modal-content {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    font-family: "body-font" !important;
}
.pwa-modal-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: "body-font" !important;
}
.pwa-modal-content p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #cccccc;
    font-family: "body-font" !important;
}
.pwa-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.pwa-update-btn {
    background: #ff5500;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: "body-font" !important;
}
.pwa-dismiss-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: "body-font" !important;
}
.pwa-update-btn:hover { background: #574fd6; }
.pwa-dismiss-btn:hover { background: #444; }
