/* Bubble container */
#pwa-install-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    padding: 4px 15px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95em;
    line-height: 1.3;
    max-width: 320px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide the bubble by default */
#pwa-install-bubble.hidden {
    display: none;
}

/* Message text inside bubble */
.bubble-message {
    flex: 1;
    color: #fff;
}

/* Buttons container */
.bubble-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Install button */
#bubble-install-button {
    background: orange;
    color: #222;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 0.9em;
}

/* Dismiss (X) button */
#bubble-dismiss-button.dismiss-x {
    background: transparent;
    color: #aaa;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

#bubble-dismiss-button.dismiss-x:hover {
    color: #fff;
}

/* Mobile tweaks */
/*@media (max-width: 600px) {
    #pwa-install-bubble {
        right: 10px;
        left: 10px;
        max-width: unset;
        padding: 10px 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .bubble-buttons {
        margin-top: 10px;
        width: 100%;
        justify-content: flex-end;
    }

    #bubble-install-button {
        flex: 1;
    }
}*/
