/* PWA Installation Modal Styles */
#pwa-install-modal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 10000;
    padding: 16px;
    border: 1px solid #e0e0e0;
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.pwa-modal-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pwa-app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pwa-text-info {
    flex: 1;
}

.pwa-title {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
    display: block;
}

.pwa-description {
    font-size: 13px;
    color: #666;
    display: block;
}

.pwa-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

.pwa-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.pwa-btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.pwa-btn-cancel:hover {
    background: #eeeeee;
}

.pwa-btn-install {
    background: #4a77d4;
    color: white;
}

.pwa-btn-install:hover {
    background: #3762bc;
}
