div[data-angular-treeview] {
  /* prevent user selection */
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

  /* default */
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

div[data-tree-model] ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  overflow: hidden;
}

div[data-tree-model] li {
  position: relative;
  padding: 0 0 0 20px;
  line-height: 20px;
}

div[data-tree-model] li .expanded {
  padding: 1px 10px;
  background-image: url("assets/open-folder.svg");
  background-repeat: no-repeat;
}

div[data-tree-model] li .collapsed {
  padding: 1px 10px;
  background-image: url("assets/folder.svg");
  background-repeat: no-repeat;
}

div[data-tree-model] li .normal {
  padding: 1px 10px;
  background-image: url("assets/folder.svg");
  background-repeat: no-repeat;
}

div[data-tree-model] li .add-directory {
    padding: 1px 10px;
    margin-left: 7px;
    background-image: url("assets/add.svg");
    background-repeat: no-repeat;
}

div[data-tree-model] li .remove-directory {
    padding: 1px 7px;
    background-image: url("assets/x.svg");
    background-repeat: no-repeat;
    background-position: center;
}

div[data-tree-model] li .add-directory-top-level {
    padding: 1px 10px;
    background-image: url("assets/add.svg");
    background-repeat: no-repeat;
}

div[data-tree-model] li i, div[data-tree-model] li span {
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

div[data-tree-model] li .selected {
  background-color: #f6efd4;
  font-weight: bold;
}

.new-node-label {
    border: none;
    background: #def0d4;
    font-weight: bolder;
    border-radius: 10px;
    padding: 3px 10px 3px 10px;
    color: black;
    margin: 2px;
}

.new-node-label::placeholder{
    font-weight: normal;
    font-style: italic;
}
