
.treeView {
    margin-top: 5px;
    max-width: 400px;
    border: solid 1px rgb(14, 70, 19);
}

.treeView-nodeOdd {
    background-color: #eaffea;
}

.treeView-nodeEven {
    background-color: #ffffff;
    /* background-color: #fff0f0; */
}

.treeView-noChild {
    border: none;
    padding-top: 2px;
    padding-right: 2px;
    padding-bottom: 2px;
    padding-left: 30px;    
}

.treeView-withChild {
    border: none;
    padding: 2px;    
}

.treeView-withChild:hover{
    background-color: #f0f0f0;
    cursor: pointer;
}

.treeView-withChild span {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 5px;
    background-color: #f0f0f0;
    text-align: center;
    vertical-align: middle;
}

.treeView-withChild span:hover {
    background-color: #d0d0d0;
}

.treeView-Level2 {
    margin-left: 30px;
}

.treeView-Level3 {
    margin-left: 60px;
}

.treeView-Level4 {
    margin-left: 90px;
}

.treeView-LevelN {
    margin-left: 90px;
}

