/* Dropdown styling fix */
select option {
    color: #333333; /* Dark text color */
    background-color: #ffffff; /* White background */
}

select option:hover,
select option:focus,
select option:active {
    background-color: #1e3a5f; /* Primary color background */
    color: #ffffff; /* White text */
}

/* Fix for dropdown text visibility */
.filter-group select,
.search-box select {
    color: #333333; /* Ensure text is visible */
    background-color: #ffffff;
}