/* Animation Keyframes */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
    50% { transform: scale(1.05); box-shadow: 0 8px 15px rgba(0,0,0,0.2); }
    100% { transform: scale(1); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
}

#pwa-install-btn {
    position: fixed;
    bottom: 50px;
    left: 20px;
    z-index: 9999;
    padding: 12px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: flex; /* Aligns icon and text */
    align-items: center;
    gap: 8px; /* Space between icon and text */
    
    /* Apply the animation */
    animation: pulse 2s infinite ease-in-out;
}

#pwa-install-btn svg {
    fill: white;
}

#pwa-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#pwa-banner-install {
    background: #0073aa;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 10px;
}

#pwa-banner-close {
    cursor: pointer;
    font-size: 20px;
    margin-left: 20px;
}