/* PWA Installation Prompt Styles - Minimalist */
.install-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    animation: slideInUp 0.3s ease-out;
}

.install-prompt {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-width: 280px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.install-prompt p {
    margin: 0 0 16px 0;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.4;
}

.install-prompt p::before {
    content: "📱";
    margin-right: 6px;
}

.install-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    flex: 1;
    min-height: 36px;
}

.btn-primary {
    background: #000;
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #333;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Animation */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .install-container {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: 400px;
        margin: 0 auto;
    }

    .install-prompt {
        max-width: none;
        border-radius: 12px;
        padding: 20px;
    }

    .install-prompt p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
    }
}

/* Desktop Enhancement */
@media (min-width: 1024px) {
    .install-prompt {
        max-width: 300px;
    }

    .install-prompt:hover {
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }
}

/* Offline indicator - Minimalist */
.offline-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 500;
    z-index: 10001;
    display: none;
    font-size: 14px;
}

.offline-indicator.show {
    display: block;
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.btn:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .install-container,
    .offline-indicator.show {
        animation: none;
    }

    .btn {
        transition: none;
    }
}