.pwa-install-prompt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pwa-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    max-width: 320px;
    width: 90%;
    text-align: center;
}

.pwa-box p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.pwa-box button {
    margin: 10px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#pwa-install-btn {
    background: #0073aa;
    color: white;
    width: 100%;
}

#pwa-install-btn:hover {
    background: #005c8a;
}

#pwa-close-btn {
    display: none; /* Hide the close button to prevent dismissal */
}

/* Add app icon */
.pwa-app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
}

.pwa-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#pwa-install-btn {
    animation: pulse 2s infinite;
}
