/* Filled Button Style (Green Background, White Text) */
.btn-filled-5642e34f {
    display: inline-block;
    background-color: #006854;
    color: #ffffff !important;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    border-radius: 8px;
    border: 1.5px solid #006854;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
    line-height: 1.4;
}

.btn-filled-5642e34f:hover {
    background-color: #004d3e;
    border-color: #004d3e;
    color: #ffffff !important;
}

/* Outline Button Style (White Background, Green Border and Text) */
.btn-outline-5642e34f {
    display: inline-block;
    background-color: #ffffff;
    color: #006854 !important;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    border-radius: 8px;
    border: 1.5px solid #006854;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
    line-height: 1.4;
}

.btn-outline-5642e34f:hover {
    background-color: #f4faf8;
    border-color: #004d3e;
    color: #004d3e !important;
}
