/* Style for the inverted button (white outline button, used on green backgrounds) */
.inverted-button {
    background-color: white !important;
    color: #255c4e !important;
}

/* Hover effect */
.inverted-button:hover {
    background-color: #255c4e !important;
    color: white !important;
}

.button-hover:hover {
	    background-color: #255c4e !important;
    color: white !important;
}


/* Style for the Solid Green button that goes to outline on hover*/
.green-solid-button {
    background-color: #255c4e !important;
    color: white !important;
}

/* Hover effect */
.green-solid-button:hover {
    background-color: white !important;
    color: #255c4e !important;
    border: solid 1px #255c4e !important;
}