
/* Smart App Install Button */
.mobile-install-btn {
    background: linear-gradient(135deg, #1d9bf0 0%, #1a8cd8 100%);
    border: none;
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    margin-left: auto; /* Push to right */
    margin-right: 8px; /* Spacing between this and Pro btn */
    box-shadow: 0 2px 5px rgba(29, 155, 240, 0.3);
    transition: transform 0.2s;
    display: none; /* Hidden by default, shown via JS */
}

.mobile-install-btn:hover {
    transform: scale(1.05);
}

/* Hide in Standalone Mode */
@media (display-mode: standalone) {
    #btnAppInstall {
        display: none !important;
    }
}
