.qr-popup-overlay {
    display: none; /* Ẩn ban đầu */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center; /* Căn giữa theo chiều dọc */
    justify-content: center; /* Căn giữa theo chiều ngang */
}

.qr-popup-content {
    background-color: #fff;
    margin: auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    width: 90%; /* Chiều rộng cho mobile */
    max-width: 320px; /* Giới hạn chiều rộng tối đa */
    position: relative;
}

.qr-popup-close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.qr-popup-close-button:hover,
.qr-popup-close-button:focus {
    color: black;
    text-decoration: none;
}

#qrCodeCanvas img { /* Đảm bảo QR code hiển thị đúng */
    display: block;
    margin: 0 auto;
}