/* Install Prompt Styles */
.install-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.5s ease-in-out;
    z-index: 1000;
}

.install-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.install-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
    border: 1px solid #0C5ADB;
}

.install-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.install-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

.install-btn {
    background: #007bff;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    margin-left: auto;
}

.install-btn:hover {
    background: #0056b3;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
    margin-left: 10px;
}

.close-btn:hover {
    color: #555;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}
