.hide {
    display: none;
}

.manual {
    margin-top: 20px;
}

.custom-multiselect {
    position: relative;
    width: 300px;
    font-family: Arial, sans-serif;
}

.selected-items {
    border: 1px solid #8c8f94;
    padding: 7px 7px;
    border-radius: 4px;
    cursor: pointer;
    /* min-height: 40px; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    background-color: #fff;
}



.selected-items .tag {
    background-color: #0073aa;
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.selected-items .tag .remove {
    margin-left: 6px;
    cursor: pointer;
    font-weight: bold;
}

.selected-items::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #888;
    transform: translateY(-50%);
    pointer-events: none;
}

.options-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #8c8f94;
    border-top: none;
    background: #f9f9f9;
    z-index: 10;
    display: none;
    max-height: 180px;
    overflow-y: auto;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.options-list label {
    display: block;
    padding: 8px 10px 8px 30px;
    cursor: pointer;
    border-bottom: 1px solid #8c8f94;
}

.options-list label:last-child {
    border-bottom: none;
}


.options-list label:hover {
    background-color: #2777b7;
    color: #fff;
}

.options-list input {
    margin-right: 8px;
}