/* Hide the original Wild Apricot payment instructions */
.payment-method-description {
    display: none !important;
}

/* Add the replacement payment instructions */
.payment-method-content::before {
    content: "Upon approval, you will receive a link to the online payment system. If a BWC Partner is paying the membership fee, they will be invoiced directly.";
    display: block;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}
/* Make the Invoice me button display as Submit */
#FunctionalBlock1_ctl00_ctl00_stepTemplate_paymentMethodsShared_btnInvoiceMe {
    font-size: 0 !important;
    color: transparent !important;
    
    /* Preserve the button's normal appearance */
    background-color: #006747 !important;
    border: 1px solid #006747 !important;
    border-radius: 4px !important;
    
    /* Make sure it has a comfortable button size */
    min-width: 100px !important;
    min-height: 40px !important;
    padding: 10px 20px !important;
    
    position: relative;
}

/* Display "Submit" on top of the button */
.payment-method-actions.manual-actions {
    position: relative;
}

.payment-method-actions.manual-actions::after {
    content: "Submit";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600;
    
    pointer-events: none;
}