/* assets/custom.css */

/* Custom outline green button */
.custom-green-outline {
    border-color: #041C18 !important; /* HEX for the green outline */
    color: #0C594B !important; /* Text color */
}

/* Custom filled green button */
.custom-green-filled {
    background-color: #0C594B !important; /* HEX for filled green */
    color: #ffffff !important; /* Text color */
    border-color: #041C18 !important; /* B
}

/* Style the dropdown container */
#year-dropdown .Select-control {
    background-color: #0C594B !important;
    border: 2px solid #041C18 !important;
    border-radius: 5px !important;
    color: #ffffff !important;
}

/* Style the dropdown text */
#year-dropdown .Select-placeholder,
#year-dropdown .Select-value-label {
    color: #ffffff !important;
}

/* Style dropdown options */
#year-dropdown .Select-menu-outer {
    background-color: #041C18 !important;
}

#year-dropdown .Select-option {
    color: #ffffff !important;
}

#year-dropdown .Select-option:hover {
    background-color: #0C594B !important;
}
