.ui-helper-hidden-accessible {
    display: none !important;
    visibility: hidden !important;
}

.ui-autocomplete {
    position: absolute;
    z-index: 1000;
    cursor: default;
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ccc;
    background-color: #fff;
}

.ui-menu-item {
    padding: 8px;
    display: block;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ui-menu-item:hover {
    background-color: #f5f5f5;
}

.ui-menu-item-custom {
    color: #007bff;
    background-color: #f8f9fa;
}

/* CSS styles for the toggle switch */
.user-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.default-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}


.hidden-checkbox {
    display: none;
}

.hidden-checkbox-default {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 24px;
}

.slider_default {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.slider_default:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.hidden-checkbox:checked+.slider {
    background-color: #2196F3;
}


.hidden-checkbox-default:checked+.slider_default {
    background-color: #2196F3;
}


.hidden-checkbox:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

.hidden-checkbox-default:focus+.slider_default {
    box-shadow: 0 0 1px #2196F3;
}

.hidden-checkbox:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.hidden-checkbox-default:checked+.slider_default:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.selected-user {
    color: #2196F3;
}

#breadcrumbs .breadcrumb .selected-user::before {
    content: none;
}