﻿/* Base style for all options */
body .select2-results__option {
    padding-left: 30px !important;
    position: relative !important;
}

/* Checkbox style for all options */
body .select2-results__option:before {
    background-color: #fff;
    border: 2px solid #e9e9e9;
    border-radius: 4px;
    content: "";
    display: inline-block;
    height: 20px;
    left: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    width: 20px;
}

/* Style for selected options */
body .select2-results__option[aria-selected=true]:before,
body .select2-results__option--selected:before {
    align-items: center !important;
    border-color: #28a745 !important;
    color: #000 !important;
    content: "\2714" !important;
    display: flex !important;
    justify-content: center !important;
}

/* Hover effect for non-selected options */
body .select2-results__option[aria-selected=false]:hover:before {
    background-color: yellow !important;
    border-color: #007bff !important;
}

/* Focus state */
body .select2-results__option:focus {
    background-color: #28a745 !important;
}

/* Dropdown positioning */
.select2-dropdown.select2-dropdown--below {
    max-height: 523px;
    overflow-x: scroll;
}

/* Selection choice styling */
div .select2-container--default .select2-selection--multiple .select2-selection__choice {
    max-width: 164px;
    overflow: hidden;
    padding-right: 15px;
    text-overflow: ellipsis;
    top: -2px;
    white-space: nowrap;
    width: fit-content;
}