.list-bank {
    max-width: 90px !important;
}

.list-bank-box{
    background: #fff !important;
    margin-bottom: 4px;
    margin-right: 4px;
    border: 1px solid #ccc;
}

.list-bank img {
    object-fit: contain;
    margin: 0px !important;
}
.vietqr-row {
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Fix cho vấn đề 2 form-row place-order */
.form-row.place-order:nth-of-type(2) {
    display: none !important;
}



/* Loading spinner for VietQR payment status - improved version */
.vietqr-loading-spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 10px auto;
    border: 3px solid rgba(0, 128, 0, 0.2);
    border-radius: 50%;
    border-top-color: green;
    animation: vietqr-spin 1s ease-in-out infinite;
}

@keyframes vietqr-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Container for the loading spinner with text - improved positioning */
.vietqr-loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px auto 5px;
    padding: 10px;
    background-color: rgba(248, 248, 248, 0.8);
    border-radius: 5px;
    max-width: 80%;
    text-align: center;
}

.vietqr-loading-text {
    margin-top: 8px;
    color: #333;
    font-size: 13px;
    font-weight: bold;
}

/* Hide this when payment is completed */
.vietqr-hide-on-completed {
    display: block;
}

/* Used with JS to hide elements when payment is completed */
.payment-completed .vietqr-hide-on-completed {
    display: none !important;
}

/* Payment success message styling */
.vietqr-payment-success {
    color: green !important;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 1em;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 128, 0, 0.1);
    border-radius: 5px;
}