.tag-control-wrapper{
    display: flex;
    color: white !important;
}

.tag-control-wrapper{
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-top: 15px;
}

.tag-control-wrapper::-webkit-scrollbar{
    display: none;
}

.tag-control-container{
    display: flex;
    padding-top: 2px;
}

.tag-control-editable{
    width: max-content !important;
    padding: 5px !important;
    margin: 0 !important;
    height: auto !important;
}

.tag-control-subtag{
    border-radius: 5px;
    display: flex;
    margin: 2px;
    background: var(--node-color);
    border: 2px dashed var(--text-color);
    padding: 2px;
}

.tag-control-subtag>*{
    margin: auto;
}

.tag-control-tag-content{
    padding: 0 5px;
    font-weight: bold;
    cursor: default;
    user-select: none;
}

.tag-control-close-btn{
    cursor: pointer;
    user-select: none;
}

.tag-control-editable:focus-visible{
    outline: none;
}

.user-input-wrp .tag-control-wrapper:has(>.tag-control-container:not(:empty)) ~ .floating-label,
.user-input-wrp .tag-control-wrapper:has(>.tag-control-editable:valid) ~ .floating-label,
.user-input-wrp .tag-control-wrapper:has(>.tag-control-editable:focus) ~ .floating-label {
    top: 0;
    left: 10px;
    font-size: 13px;
    white-space: nowrap;
    color: #000000aa;
}

.tag-control-editor{
    color: black !important;
    width: 100%;
    font-size: 17px;
    padding: 5px;
}