/* Ensure that "Pay Now" button does not appear when a user wins an auction, if the equivalent php file fails */
.auction-ajax-change a.button[href*="pay-auction"],
.auction-ajax-change .button.pay-button,
.woocommerce-message a.button[href*="checkout"] {
    display: none !important;
}

/* Ensure the custom verification message is visible */
.ecars-winner-notice {
    display: block !important;
}


/* Fix for the 'Pay for Order' button on Checkout */
#place_order.button.alt {
    background-color: #1E90FF !important; /* Keep your DodgerBlue as default */
    color: #ffffff !important;
    border: 2px solid #1E90FF !important;
    transition: all 0.3s ease;
}

#place_order.button.alt:hover {
    background-color: #ffffff !important;
    color: #000000 !important; /* Black letters */
    border: 2px solid #000000 !important; /* Black border */
    cursor: pointer;
}