/* Fix button styles across the site to have a consistent light green background and white text */

.elementor-button,
.elementor-button .elementor-button-content-wrapper,
.wp-block-button__link,
button,
input[type="submit"],
.button {
    background-color: #90ee90 !important; /* Light green */
    background-image: none !important;
    color: #ffffff !important;
    text-align: center !important;
    box-shadow: none !important;
}

.elementor-button {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.elementor-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
.button:hover {
    background-color: #7fcd7f !important; /* Slightly darker light green for hover, keeping it consistent */
    background-image: none !important;
    color: #ffffff !important;
}
