/* Style for the dropdown options */
.Select-option {
    background-color: #444 !important;
    /* Dark background for options */
    color: white !important;
    /* White text for options */
    padding: 8px;
    /* Spacing inside each option */
    border-radius: 5px;
    /* Rounded corners for options */
}

/* Style when the option is hovered over */
.Select-option:hover {
    background-color: #555 !important;
    /* Slightly lighter background on hover */
}