        .filterable-list-container {
            position: relative;
            width: 100%;
            margin: 15px auto;
        }
        
        .list-container {
            max-height: 350px;
            min-height: 300px;
            overflow-y: auto;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-top: 5px;
        }
        
        #filterInput{
            width: 300px;
            text-align: left;
        }


        .list-item {
            padding: 5px 10px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: background-color 0.2s;
            text-align: left;
        }
        
        .list-item:last-child {
            border-bottom: none;
        }
        
        .list-item:hover {
            background-color: #f5f5f5;
        }
        
        .list-item.selected {
            background-color: #337ab7;
            color: white;
        }
        
        .list-item.highlight {
            background-color: #e6f3ff;
        }
        
        .no-results {
            padding: 15px;
            text-align: center;
            color: #777;
            font-style: italic;
        }
        
        .counter {
            margin-top: 5px;
            font-size: 12px;
            color: #666;
            text-align: right;
        }
        
        .single-line-input {
            display: flex;
            align-items: center;
            padding-right: 40px;
        }
        
        .input-clear {
            position: absolute;
            right: 35px;
            top: 0;
            height: 100%;
            background: transparent;
            border: none;
            color: #999;
            cursor: pointer;
            display: none;
        }
        
        .input-clear.visible {
            display: block;
        }
        
        .dropdown-toggle {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            border: none;
            background: #f5f5f5;
            border-left: 1px solid #ddd;
        }
        
        .form-group {
            position: relative;
            margin-bottom: 0;
        }

        .sel-item-value{
            text-align: left;
            border-bottom: 1px dotted #666;
            cursor: pointer;
        }