
/* Custom styles for the select dropdown */
.custom-select {
    background-color: white; /* Set the background to black */
    color: #333; /* Change text color to white */
}

/* Change the color of the options */
.custom-select option {
    background-color: black; /* Set the background for options to black */
    color: #333; /* Change option text color to white */
}

/* Optional: Change the border color if needed */
.custom-select:focus {
    border-color: white; /* Change border color on focus */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* Optional shadow for better visibility */
}
