.multi-selected {
    position: relative;
}

.multi-selected::before {
    content: '\2713'; /* Unicode 编码，可以是其他图标 */
    color: black;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.trigger {
    width: 100%;
}

.searchable-input {
    width: calc(100% - 33px);
    border: none !important;
    outline: none !important;
}

.multi-select-btn {
    border: none;
    background-color: white;
    width: 33px;
    align-self: center;
}

.multi-searchable-select-menu-container {
    display: block;
    max-height: 235px;
    width: 100%;
    overflow-y: auto;
}

.multi-searchable-select-menu {
    display: contents;
}

.btn-choose {
    width: 50%;
    font-size: 14px;
    border: none;
}

.menu-container {
    width: 100%;
    border: 1px solid gainsboro;
    border-radius: 6px;
    position: absolute;
    background-color: white;
    z-index: 3;
}

.multi-searchable-select-btn {
    display: flex;
    border-bottom: 1px solid gainsboro;
}

.multi-searchable-select {
    position: relative;
}

.trigger-input {
    display: inline-flex;
    width: 100%;
    border: 1px solid gainsboro;
    border-radius: 6px;
    padding: 2px;
}

.btn-del:hover {
    background-color: white !important;
}

.btn-del:hover i {
    color: rgb(13, 110, 253) !important;
}

.disable-link {
    pointer-events: none;
    color: gray;
}