#qrcode canvas {
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#qrcode svg {
    shape-rendering: crispedges;
}

#qrcode {
    background-color: #fff;
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

#qrcode img,
#qrcode canvas,
#qrcode svg {
    display: block;
    margin: 0 auto;
}

.qr-wrapper {
    width: 100%;
    text-align: center;
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    background: white;
    padding: 4px;
    border-radius: 10px;
    box-sizing: border-box;
    border: 2px solid #000;
}
