.pwa-install-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    vertical-align: middle;
}

.pwa-install-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: auto;
    max-width: 100%;
    min-height: 30px;
    box-sizing: border-box;
    margin: 0;
    padding: 5px 8px;
    border: 1px solid #D4DD4C;
    border-radius: 5px;
    background: #E7F1EC;
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.pwa-install-button:hover,
.pwa-install-button:focus {
    border-color: #D4DD4C;
    background: #ffffff;
    color: #000000;
}

.pwa-install-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pwa-install-message {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 999;
    width: 220px;
    box-sizing: border-box;
    padding: 6px 8px;
    border: 1px solid #D4DD4C;
    border-radius: 5px;
    background: #E7F1EC;
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
}

.pwa-install-box.has-message .pwa-install-message {
    display: block;
}

@media (max-width: 600px) {
    .pwa-install-button {
        min-height: 28px;
        padding: 4px 7px;
        font-size: 12px;
    }

    .pwa-install-message {
        right: auto;
        left: 0;
        width: min(220px, 90vw);
    }
}
