.custom_add_to_cart_button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #007cba;
    border: none;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
}

.custom_add_to_cart_button:hover {
    background-color: #005a87;
}


.button.custom-add-to-cart-button {
    background-color: #0071a1; /* Default background color */
    color: #ffffff; /* Default text color */
    padding: 10px 20px; /* Default padding */
    border: none; /* Default border */
    border-radius: 5px; /* Default border radius */
    text-transform: uppercase; /* Default text transform */
    font-size: 16px; /* Default font size */
    cursor: pointer; /* Default cursor */
    text-align: center; /* Default text alignment */
    display: inline-block; /* Default display */
    transition: background-color 0.3s ease, color 0.3s ease; /* Default transition */
}

.button.custom-add-to-cart-button:hover {
    background-color: #005f8a; /* Default hover background color */
    color: #e0e0e0; /* Default hover text color */
}

a.button.custom-add-to-cart-button {
    text-transform: none;
}
