/* Create CSS file (css/style.css) */
#add_qr_payment-button {
    margin-top: 20px;
}

/* Overlay style */
#add_qr_payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Màu nền tối với độ trong suốt */
    display: none;
    /* Ẩn overlay mặc định */
    z-index: 9998;
    /* Đặt z-index dưới popup */
}

/* Popup style */
#add_qr_payment-popup {
    position: fixed;
    top: 30%;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    max-height: 90%;
    max-width: 90%;
}

@media (min-width:768px) {
    #add_qr_payment-popup {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-height: 500px;
        max-width: 500px;
    }
}