/* PWA Install Banner Styles */
.pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--enerp) 0%, #1a2a4a 100%);
    color: white;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    padding: 16px;
    font-family: system-ui, -apple-system, sans-serif;
}

.pwa-banner-show {
    transform: translateY(0);
}

.pwa-banner-hide {
    transform: translateY(100%);
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    gap: 12px;
}

.pwa-banner-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.pwa-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pwa-banner-text strong {
    font-size: 16px;
    font-weight: 600;
}

.pwa-banner-text small {
    font-size: 13px;
    opacity: 0.9;
}

.pwa-banner-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pwa-btn-install {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pwa-btn-install:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.pwa-btn-dismiss {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    opacity: 0.7;
}

.pwa-btn-dismiss:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .pwa-banner-content {
        gap: 8px;
    }

    .pwa-banner-text strong {
        font-size: 15px;
    }

    .pwa-banner-text small {
        font-size: 12px;
    }

    .pwa-btn-install {
        padding: 6px 12px;
        font-size: 13px;
    }
}