.pwa-install-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    max-width: 400px;
}

.pwa-install-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.pwa-install-content {
    display: flex;
    padding: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.pwa-install-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    color: #9333EA;
}

.pwa-install-icon svg {
    width: 100%;
    height: 100%;
}

.pwa-install-text {
    flex: 1;
    min-width: 200px;
}

.pwa-install-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
}

.pwa-install-text p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #718096;
}

.pwa-install-actions {
    display: flex;
    margin-top: 12px;
    width: 100%;
    justify-content: flex-end;
}

.pwa-install-btn {
    background-color: #9333EA;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    margin-left: 8px;
}

.pwa-dismiss-btn {
    background-color: transparent;
    color: #718096;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.pwa-install-btn:hover {
    background-color: #7e22ce;
}

.pwa-dismiss-btn:hover {
    background-color: #f7fafc;
}

@media (max-width: 640px) {
    .pwa-install-button {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}
