.pqr-thumb-wrap {
    display: inline-block;
}

.pqr-thumb-img {
    width: 30px;
    height: auto;
    border-radius: 10% !important;
    cursor: pointer;
    transition: transform 0.2s;
}

.pqr-thumb-img:hover {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .pqr-thumb-img {
        width: 30px;
    }
}

/* Modal overlay (created dynamically) */
.pqr-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal content */
.pqr-modal-content {
    position: relative;
    max-width: 350px;
}

/* Large QR image */
.pqr-modal-img {
    width: 180px;
    background: white;
    padding: 15px;
    border-radius: 10px !important;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    display: block;
}

@media (max-width: 767px) {
    .pqr-modal-img {
        width: 150px;
    }
}

/* Close button */
.pqr-modal-close {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 17px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pqr-modal-close:hover {
    background: rgba(114, 114, 114, 1);
}

@media (max-width: 767px) {
    .pqr-modal-close {
        top: -18px;
        right: -18px;
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .pqr-modal-close:hover {
    background: rgba(114, 114, 114, 1);
}
}


    