#pwaInstallBar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #006fcd, #6c5ce7);
    color: white;
    padding: 12px 15px;
    z-index: 99999;
    transition: 0.4s ease;
}

#pwaInstallBar.show {
    bottom: 0;
}

.pwa-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pwa-actions {
    display: flex;
    gap: 10px;
}

#pwaInstallBtn {
    background: white;
    color: #006fcd;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

#pwaCloseBtn {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}
