/* PWA Prompt Styles */
:root {
    --pwa-primary: #007bff;
    --pwa-text: #333;
    --pwa-bg: #ffffff;
}

/* iOS Safe Area Support */
body {
    padding-top: env(safe-area-inset-top);
}

.pwa-prompt-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--pwa-bg);
    color: var(--pwa-text);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #eee;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.pwa-prompt-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.pwa-prompt-title {
    font-weight: bold;
    font-size: 1.1rem;
}

.pwa-prompt-body {
    font-size: 0.9rem;
    line-height: 1.4;
}

.pwa-prompt-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.pwa-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.pwa-btn-primary {
    background: var(--pwa-primary);
    color: white;
}

.pwa-btn-secondary {
    background: #f0f0f0;
    color: #555;
}

/* Specific styles for iOS instructions */
.ios-instruction {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    padding: 8px;
    border-radius: 8px;
    margin-top: 8px;
}

.share-icon {
    width: 20px;
    height: 20px;
}
