/* Input box background */
.Select-control {
    background-color: #533383 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* Input box text color */
.Select-value-label, .Select-placeholder {
    color: white !important;
}

/* Dropdown menu options */
.VirtualizedSelectOption {
    background-color: #533383 !important;
    color: white !important;
}

/* Dropdown menu hover effect */
.VirtualizedSelectFocusedOption {
    background-color: #280064 !important;
    opacity: .7;
}

/* Multi-select values */
.Select--multi .Select-value {
    color: white !important;
}

/* Inactive tab styling */
.nav-tabs .nav-link {
    background-color: #280064; 
    color: white; 
    border-radius: 5px 5px 0 0;
}

/* Active tab styling */
.nav-tabs .nav-link.active {
    background-color: #ffffff;
    color: #3B3A3C;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}