/* PWA Install Prompt Styles */
.pwa-install-prompt {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0d6efd;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 15px;
    max-width: 350px;
}

.pwa-install-prompt.show {
    display: flex;
}

.pwa-install-prompt .pwa-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.pwa-install-prompt .pwa-content {
    flex: 1;
}

.pwa-install-prompt .pwa-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.pwa-install-prompt .pwa-content p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.pwa-install-prompt .pwa-buttons {
    display: flex;
    gap: 10px;
}

.pwa-install-prompt button {
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

.pwa-install-prompt .btn-install {
    background: white;
    color: #0d6efd;
}

.pwa-install-prompt .btn-dismiss {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.pwa-install-prompt button:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .pwa-install-prompt {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
