/* Gaya untuk QR Code floating */
#floating-qrcode {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

/* Opsional: tambahkan label */
#floating-qrcode::after {
    content: "Aplikasi Mobile";
    display: block;
    text-align: center;
    font-size: 12px;
    margin-top: 6px;
    color: #555;
}