.pwa-prompt {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    transition: all 0.3s ease;

    @media screen and (max-width: 440px) {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

.pwa-prompt-content {
    padding: 16px;
}

.pwa-prompt-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.pwa-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.pwa-prompt-header h3 {
    margin: 0;
    font-size: 18px;
}

.pwa-prompt-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
    gap: 8px;
}
