﻿.btn-warning  {
    background-color: #fd9629;
}
.btn-outline-warning {
    border-color: #fd9629;
    color: #fd9629;
}
    .btn-outline-warning:hover {
        background-color: #fd9629;
    }

    /* Select 2 dark theme */
/* Select2 Container (Collapsed State) */
.select2-container--default .select2-selection--single {
    background-color: #3b3b3b;
    border: 1px solid #555555;
    color: #ffffff;
}

/* Select2 Dropdown */
.select2-container--default .select2-dropdown {
    background-color: #3b3b3b; /* Set dropdown background */
    border: 1px solid #555555;
}

/* Dropdown List Items */
.select2-container--default .select2-results__option {
    background-color: #3b3b3b;
    color: #ffffff;
}

/* Highlighted List Item */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #555555;
    color: #ffffff;
}

/* Disabled Option */
.select2-container--default .select2-results__option[aria-disabled="true"] {
    color: #888888;
    background-color: #444444;
}

/* Search Box within Dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #444444;
    color: #ffffff;
    border: 1px solid #555555;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #dadada !important;
    line-height: 28px;
}
    /* Search Box Placeholder */
    .select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
        color: #bbbbbb;
    }
.select2-container--default .select2-results > .select2-results__options {
    max-height: 500px !important;
    overflow-y: auto;
}
.select2-container--default .select2-results__option--selected {
    background-color: #3d5350 !important;
}
/* Placeholder in Collapsed State */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #bbbbbb;
}

/* Dropdown Arrow */
.select2-container--default .select2-selection__arrow b {
    border-color: #ffffff transparent transparent transparent;
}

/* Focus State */
.select2-container--default .select2-selection--single:focus {
    border-color: #777777;
}

/* Adjusting for white background issue in Collapsed State */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    background-color: #3b3b3b; /* Ensure the background stays dark */
    color: #ffffff;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
     /*border: none !important; */
    border-radius: 4px;
    height: 30px !important;
}