.pwa-install-popup {
    position: fixed;
    top: 15px;
    /* ubah dari bottom ke top */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 400px;
    width: calc(100% - 30px);
}

.pwa-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.pwa-content p {
    margin: 0;
    font-size: 14px;
}

.pwa-content img {
    height: 30px;
    width: 40px;
}

#pwa-install-btn {
    background: #ed1c24;
    border: none;
    color: white;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
}

#pwa-close-btn {
    background: #e5e5e5;
    border: none;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
}
