/* Change the hover color of all buttons to #f9ecf2 */
button:hover {
    background-color: #f9ecf2;
    color: #000000; /* Text color */
}
/* Keep the button text color constant and prevent it from changing on hover */
.button, .wp-block-button {
    background-color: #ffffff; /* Set the default background color */
    color: #082D0F; /* Set the text color to dark green */
    transition: background-color 0.3s; /* Add a smooth transition effect for the background color */
}

.button:hover, .wp-block-button:hover {
    background-color: ##f9ecf2; /* Keep the background color the same on hover */
}
/* Keep the button text visible at all times */
.button, .wp-block-button {
    background-color: #ffffff; /* Set the default background color */
    color: #082D0F; /* Set the text color to dark green */
    transition: background-color 0.3s; /* Add a smooth transition effect for the background color */
}
.button:hover, .wp-block-button:hover {
    background-color: #f9ecf2; /* Change the background color on hover */
    color: #082D0F; /* Maintain the text color on hover */
}
/* Keep the button text color black and prevent it from changing on hover */
.button, .wp-block-button {
    background-color: #ffffff; /* Set the default background color */
    color: #000000; /* Set the text color to black */
}
/* Keep the button text color black and prevent it from changing on hover */
.button, .wp-block-button {
    background-color: #ffffff; /* Set the default background color to white */
    color: #000000; /* Set the text color to black */
}

.button:hover, .wp-block-button:hover {
    background-color: #ffffff; /* Keep the background color white on hover */
    color: #000000; /* Maintain the text color as black on hover */
}
/* Set the button background color to pink and text color to black */
.button, .wp-block-button {
    background-color: #ff69b4; /* Set the background color to pink */
    color: #000000; /* Set the text color to black */
}

/* Ensure the text is fully visible */
.button span, .wp-block-button__link {
    opacity: 1; 
}