/* TONOWPAY Payment Gateway Styles */

/* Logo styling for classic checkout */
.payment_methods .payment_method_tonow_payment img {
    max-width: 100px;
    max-height: 50px;
    height: auto;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
}

/* Logo styling for block checkout */
.wc-block-components-payment-method-label img {
    max-width: 100px;
    max-height: 50px;
    height: auto;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
}

/* Ensure logo fits well in payment method selection */
.wc-block-components-payment-method-label {
    display: flex;
    align-items: center;
}

/* Payment method title with logo alignment */
.payment_method_tonow_payment label {
    display: flex;
    align-items: center;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .payment_methods .payment_method_tonow_payment img,
    .wc-block-components-payment-method-label img {
        max-width: 80px;
        max-height: 40px;
    }
}
