/* QR Code Styles */
.contact-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.contact-qr canvas,
.contact-qr img {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    max-height: 90%;
}

#qrcode-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#qrcode-placeholder canvas,
#qrcode-placeholder img {
    display: block;
    margin: 0 auto;
    max-width: 100% !important;
    max-height: 100% !important;
    width: 130px !important;
    height: 130px !important;
}
