﻿

/* Install Banner Styles */
.install-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.install-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.install-text {
    flex: 1;
}

.install-text h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.install-text p {
        margin: 0;
        font-size: 14px;
        opacity: 0.9;
    }

.install-buttons {
    display: flex;
    gap: 10px;
}

.install-btn {
    background: white;
    color: #764ba2;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.install-btn:hover {
    transform: translateY(-2px);
}

.close-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
}

.close-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Floating Action Button */
.fab-install {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #764ba2;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
    font-size: 24px;
}

.fab-install:hover {
    transform: scale(1.1);
}
