.tree-view {
    padding-top: 10px;
}

.tree-view input {
    margin: 0px;
}

.tree-view ul {
    margin: 0;
    padding: 0;
}

.tree-view ul li {
    list-style: none;
    cursor: pointer;
    color: #555;
    padding-left: 20px;
}

.tree-view > ul > li {
    padding-left: 0px;
}

.tree-view ul li .list-header:hover {
    background: #ccc;
}

/*
    Improvement: 14-03-2024
    Some CSS has been modifed to handle the inticator list in arabic language
*/
.tree-view ul li .list-header {
    /* min-height: 38px; */
    /* padding: 10px 10px; */
    padding: 10px 10px 7px;
    border-bottom: 1px solid #ccc;
    display: flex;
}

/*
    Improvement: 14-03-2024
    Some CSS has been modifed to handle the inticator list in arabic language
*/
.tree-view .lblTxt {
    cursor: pointer;
    /* padding: 10px 0px; */
    word-break: break-word;
    word-wrap: break-word;
    font-weight: normal;
    /* display: inline; */
    display: inline-flex;
    padding: 0px;
}

.tree-view .lblTxt input[type='checkbox'] {
    min-width: 0px;
    float: none;
    margin-right: 5px !important;
}

.tree-view label .nodeText {
    padding-left: 5px;
    word-wrap: break-word;
}

.tree-view ul li .control-box {
    min-width: 15px;
    min-height: 15px;
}

.tree-view ul li .control-box span {
    display: inline-block;
    min-width: 15px;
    min-height: 15px;
}

.tree-view .list-header.nodeSelected {
    background: #993366;
    color: #FFF;
}

.tree-view .list-header.nodeSelected:hover {
    background: #993366;
}

/*
    Improvement: 14-03-2024
    Some CSS has been added to handle the inticator list in arabic language
*/
/* new classes start */
.tree-view .lableText .lblTxt span {
    margin-left: 5px;
    display: inline-flex;
    line-height: 18px;
}

.rtl .tree-view .lableText .lblTxt span {
    text-align: right;
}

.list-header .lableText {
    display: inline-flex;
}

.treeview-list .tree-view .level-container .list-header {
    flex-wrap: wrap;
}
/* new classes end */
