#pwa-install-banner {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f8f9fa;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    height: auto;
    min-height: 50px;
    max-width: 1400px;
    width: 100%;
    border-radius: 4px;
    box-sizing: border-box;
    background: #222222;
    color: #fbfbfb;
}

#pwa-install-banner * {
    color: #fbfbfb;
}

#pwa-install-banner > div {
    display: flex;
    align-items: center;
}

#pwa-install-banner .button-container {
    gap: 6px;
    flex-shrink: 0;
}

#install-button {
    padding: 6px 12px;
    margin-left: 5px;
}
,
#dismiss-button {
    padding: 6px 4px;
}

#install-button,
#dismiss-button {
    white-space: nowrap;
    font-size: 0.9em;
}

#install-button {
    background: orange;
    color: #222222;
    border-radius: 4px;
}

.message {
    margin-right: 10px;
    font-size: 0.9em;
}

@media (max-width: 840px) {
    #pwa-install-banner {
        left: 0;
        right: 0;
        transform: none;
        border-radius: 0;
        padding: 8px 12px;
    }
    
    .message {
        margin-right: 8px;
    }
}

@media (max-width: 840px) {
    #pwa-install-banner {
        padding: 5px;
    }
}

/* Style for the menu install button */
#pwa-menu-install {
    display: none;
}

/* Add a class for the body when banner is visible */
/*body.has-pwa-banner {
    padding-top: 50px;
    transition: padding-top 0.3s ease;
}*/

@media (max-width: 840px) {
    a#menu-install-button {
        width: 100%;
        display: inline-block;
        background: red;
        padding: 2px 6px;
        border-radius: 4px;
    }
}