/******* Do not edit this file *******
Code Snippets Manager
Saved: Jul 28 2025 | 07:35:56 */
/* --- Force WP Simple Pay button to match Kadence theme --- */

/* This styles the main button appearance */
.simpay-payment-btn {
    background-color: #1966eb !important;  /* Main state: Blue background */
    color: #ffffff !important;             /* Main state: White text */
    border: 2px solid #1966eb !important;  /* Add a border to keep the shape on hover */
    border-radius: 50px !important;         /* Increased border radius for more rounded corners */
    padding: 10px 35px !important;         /* Increased left/right padding */
    font-size: 25px !important;
    font-weight: 400 !important;
    height: auto !important;
    width: auto !important;
    line-height: normal !important;
    text-transform: none !important;
    transition: background-color 0.3s, color 0.3s; /* Adds a smooth transition effect */
}

/* This styles the button when you hover your mouse over it */
.simpay-payment-btn:hover {
    background-color: #ffffff !important;  /* Hover state: White background */
    color: #1966eb !important;             /* Hover state: Blue text */
}