* {
    font-family: 'Helvetica Neue', 'Lucida Grande', sans-serif;
    margin: 0;
    box-sizing: border-box;
}

#nav {
    width: 20%;
    height: 100%;
    position: relative;
    float: left;
    background-color: hsl(0, 0%, 96%);
}

.nav-button {
    font-size: 12;
    font-weight: bold;
    text-align: left;
    width: 100%;
    height: 3em;
    border: none;
    padding: 0 0 0 10px;
    color: rgb(48, 57, 66);
    background-color: hsl(0, 0%, 96%);
    outline: none;
    cursor: pointer;
}

.nav-button:hover {
    background-color: hsl(0, 0%, 92%);
}

.selected, .selected:hover {
    color: #fff;
    background-color: rgb(56, 121, 217);
}

#drag-n-drop {
    position: absolute;
    right: -3;
    top: 0;
    bottom: 0;
    width: 7px;
    cursor: col-resize;
    z-index: 9999;
}

#drag-n-drop .bar {
    background-color: rgb(64%, 64%, 64%);
    position: absolute;
    right: 3;
    top: 0;
    bottom: 0;
    width: 1px;
}

#main {
	width: 80%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
    overflow-y: scroll;
}

#main > button {
    margin: 10px;
}

.panel-table {
    font-size: 12px;
    border-spacing: 0;
    width: 100%;
}

.panel-table thead {
    border-bottom: 1px solid #ddd;
}

.panel-table tbody tr:nth-child(odd) {
    background: #f3f3f3;
}

.panel-table tbody tr {
    opacity: 0.6;
}

.panel-table tbody tr:hover {
    cursor: pointer;
    opacity: 1;
}

.panel-table tr td {
    line-height: 30px;
    min-height: 30px;
    padding-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    border-right: 1px solid #ddd;
}

.panel-table thead tr td {
    border-bottom: 1px solid #ddd;
}
