* {
    font-family: monospace;
    font-weight: bold;
    position: relative;
    font-size: 18px;
    outline:none;
    margin: 0px;
}

html {
    height: 100%;
}

body {
    min-height: 300px;
    min-width: 600px;
    overflow: hidden;
    height: 100%;
}

li span {
    white-space: nowrap;
}

.item {
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    padding: 3px;
    height: 20px;
}

.submenu {
    display: none;
    padding: 0px;
    widows: 200px;
    left: 80px;
    top: -2px;
}

.button {
    box-shadow: 3px 3px 0px 0px rgba(0,0,0,1);
    margin: 24px -16px 0px 26px;
    padding: 0px 5px 0px 5px;
    background-color: white;
    border: 2px solid black;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
}

.item span {
    pointer-events: none;
    white-space: nowrap;
    font-size: 16px;
}

.button:hover {
    background-color: #eee;
}

.button:active {
    box-shadow: 1px 1px 0px 0px rgba(0,0,0,1);
    left: 2px;
    top: 2px;
}

.item:hover {
    background-color: #eee;
}

.symbol:hover {
    cursor: pointer;
}

.title:hover {
    cursor: default;
}

.item:hover > .submenu {
    display: block;
}

#contextmenu, .submenu {
    box-shadow: 3px 3px 0px 0px rgba(0,0,0,1);
    border: 2px solid black;
    background-color: white;
    position: absolute;
    z-index: 998;
    width: 80px;
}

#root_container {
    padding-bottom: 20px;
    position: absolute;
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
}

#tree_container {
    margin-bottom: 200px;
}

#prompt {
    padding: 4px 10px 10px 10px;
    border-radius: 0 0 8px 8px;
    border: 2px solid black;
    background-color: black;
    text-align: center;
    max-width: 700px;
    min-width: 300px;
    border-top: 0px;
    color: white;
    margin: 0 auto;
    display: none;
    z-index: 999;
    width: 60%;
}

#tree_container ul {
    margin-left: -10px;
    list-style: none;
}

#tree_container li {
    padding-top: 18px;
}
#prompt input {
    border: 2px solid white;
    width: calc(100% - 10px);
    border-radius: 2px;
    margin: 5px 0 0 0;
    padding: 0 3px;
}
