

.multiselect-container { position: relative; }

.input-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: text;
}

.input-area:focus-within {
    border-color: #0078d4;
    box-shadow: 0 0 0 2px #0078d433;
}

.search-tag {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    color: #000000;
    font-size: 15px;
    line-height: 1;
    border-radius: 4px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tag span { cursor: pointer; font-weight: bold; }

.input-area input {
    border: none;
    outline: none;
    flex: 1;
    min-width: 60px;
    padding: 4px;
    font-size: 0.9em;
}

.options-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.options-list.active { display: block; }

.category-label {
    font-weight: bold;
    padding: 4px 8px;
    /*background: #f0f0f0;*/
    cursor: default;
}

.option-item {
    padding: 8px;
    cursor: pointer;
    text-indent: 1rem;
}

.option-item:hover,
.option-item.active {
    background: #00589E;
    border: 3px solid #00589E;
    color: white;
}

.option-item[aria-selected="true"] {
    background: #e4e4e4;
    color: black;
}
.removeTag {
    cursor:pointer;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}