html, body {
    overflow: hidden;
    width: 100%;
    height:100%;
    margin: 0;
    padding:0;
    user-select: none;
    font-family: Arial, Helvetica, sans-serif;
}
#renderCanvas {
    width: 100%;
    height:100%;
    touch-action: none;
}
.ncw_btn {
    width: fit-content;
    height:fit-content;
    background-color: #444;
    color: #eee;
    border: 2px solid white;
    border-radius: 4px;
    padding: 0.5vh 0.5vw;
}
.ncw_btn:hover {
    border: 2px solid orange;
}
#InfoPanel {
    position: fixed;
    background-color: black;
    text-align: left;
    font-size: 1.5vh;
    color: white;
    top: 0vh;
    left:0vw;
    width: fit-content;
    display: none;
}
#DebugPanel {
    position: fixed;
    background-color: black;
    text-align: center;
    font-size: 1.2vh;
    color: white;
    top: 0vh;
    right: 0vw;
    width: 3vw;
    display: grid;
}
.dbg_txt {
    height: 2vh;
}
#MainMenu {
    width: 50vw;
    height: 50vh;            
    font-size: 2.5vh;
    color: #eee;
    position: fixed;
    top: 25vh;
    left:25vw;
    display: grid;
    justify-items: center;
}
.species_item {
    display: grid;
    grid-template-columns: 1vw 4vw 3vw 4vw;
    width: 12vw;
}
.species_item:hover {
    background-color: #444;
}
#HelpPanel {
    font-size: 1.8vh;
    line-height: 2.8vh;
    padding: 1vh 1vw;
    background-color: #222;
    color: #eee;
    position: fixed;
    top: 1vh;
    left:14vw;
    z-index: 30;
    display: none;
}
.cube_info {
    position: fixed;
    top: 3vh;
    right: 0;
    width: 30vw;
    height:97vh;
    background-color: #222;
    color: #eee;
    font-family: monospace;
    font-size: 1.5vh;
    padding: 0.5vh 0.5vw;
    overflow-y: auto;
}
.table_header {
    padding: 0.5vw 0.5vh;
}
.table_header:hover {
    background-color: #444;
}
