#orgChart {
    width: auto;
    height: auto;
}

#orgChartContainer {
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #ffffff;
}

.activity {
    border: 1px inset black;
    box-shadow: 10px 10px 10px lightgray;
}

.vertical-connector {
    border-right: 1px solid black;
}

.horizontal-connector {
    border-bottom: 1px solid black;
}

.chart-cell {
    border: 1px solid black;
}

.th-activity {
    height: 30px;
    border: 1px solid black;
    text-align: center;
}

.td-activity {
    height: 30px;
    border: 1px solid black;
}

.table-activity {
    width: 700px;
    margin-left: 20px;
    border-left: 4px solid gray;
}

/* 
        tr:hover {
            background-color: #f1f1f1;
        } */

.context-menu {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    border: solid 1px black;
    border-radius: 5px;
    width: 180px;
}

.context-menu li {
    padding: 8px 12px;
    cursor: pointer;
}

.context-menu li:hover {
    background-color: #eee;
}

.tree-options {
    cursor: pointer;
    padding: 0px;
    border: 1px inset black;
    border-radius: 5px;
    margin: 5px;
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.split-container {
    display: flex;
    width: 100%;
    height: 90%;
    overflow-y: scroll;
}

.split1 {
    overflow: auto;
    height: 100%;
}

.left1 {
    width: 45%;
    background-color: #fffdfd;
}

.right1 {
    flex-grow: 1;
    background-color: #fffefe;
}

.split-resizer {
    width: 5px;
    background-color: #bcbcbc;
    cursor: ew-resize;
    position: relative;
    z-index: 1;
    cursor: grabbing;
}
/* Tree CSS --------------------- */

div.orgChart {
    margin : 10px;
    padding : 20px;
  }
  
  div.orgChart h2 {
    margin : 0px;
    font-size : 16px;
    font-weight: normal;
    min-height: 20px;
  }
  

  
  div.orgChart ul {
    list-style : none;
    margin : 4px;
    padding : 0px;
    font-size : 0.8em;
    text-align : left;
  }
  
  div.orgChart ul.stack,
  div.orgChart ul.stack ul { text-align : center; }
  
  div.orgChart table { width : 100%; }
  
  div.orgChart tr.lines td.line {
    width : 1px;
    height : 20px;
  }
  
  div.orgChart tr.lines td.top { border-top : 1px inset black; }
  
  div.orgChart tr.lines td.left { border-right : 1px inset black; }
  
  div.orgChart tr.lines td.right { border-left : 0px inset black; }
  
  div.orgChart tr.lines td.half { width : 50%; }
  
  div.orgChart td {
    text-align : center;
    vertical-align : top;
    padding : 0px 2px;
  }
  
  div.orgChart div.node {
    cursor : default;
    border : 1px solid #e7e7e7;
    display : inline-block;
    padding : 5px;
    width : 96px;
    /* height : 60px; */
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #fbfbfb 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #fbfbfb)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #fbfbfb 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #fbfbfb 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #fbfbfb 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%, #fbfbfb 100%); /* W3C */
    line-height : 1.3em;
    border-radius : 4px;
    -moz-border-radius : 4px;
    -webkit-border-radius : 4px;
    position: relative;
    box-shadow: 1px 1px 0px #ddd;
  }
  
  .org-add-button,
  .org-del-button,
  .org-confirm-del-button {
    position: absolute;
    font-size: 12px;
  }
  
  .org-add-button {
    bottom: 3px;
    left: 5px;
    padding-left: 13px;
    background: url(./add.png) no-repeat 0 3px;
  }
  
  .org-add-button:hover,
  .org-del-button:hover {
    background-color: #eef;
    border-radius: 2px;
    cursor: pointer;
  }
  
  .org-del-button {
    background: url(./delete.png) no-repeat;
    width: 12px;
    height: 12px;
    bottom: 7px;
    right: 5px;
  }
  
  .org-input { width: 90px; }
  
  .org-confirm-del-button { display: none; }
  