/* Quelle https://stackoverflow.com/questions/12194469/best-way-to-do-a-split-pane-in-html */
.splitter {
    width: 100%;
    /*height: 100%;*/
    display: flex;
    flex-direction: row;
    overflow: auto;
    position: absolute;
    top:70px; /* make this equal to the height of your header tag */
    bottom:5px; /* make this equal to the height of your footer tag */
    left:0px;
    right: 0px;
}

#splittmenu {
    /*width: 190px;*/
    position: absolute;
    top:0px; /* make this equal to the height of your header tag */
    bottom:0px; /* make this equal to the height of your footer tag */
    left: 10px;
    /*right: 0px;*/

}

#separator {
    cursor: col-resize;
    background-color: #aaa;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2' height='30'><path d='M2 0 v30 M5 0 v30 M8 0 v30' fill='none' stroke='black'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    width: 0;
    height: 840px;
    /* Prevent the browser's built-in drag from interfering */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#splittcontent { 
    /*width:100%;
    min-width: 200px;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden; */
}
#toolbar {
    height: 40px;
}

#inhalt {
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top:0px; /* make this equal to the height of your header tag */
    bottom:0px; /* make this equal to the height of your footer tag */
    /*left: 205px;*/
    right: 15px;
}

div#menu button.menu {
    width: 100%;
    height: 25px;
    vertical-align:middle;
    border-radius: 0px;
    
}

div#menu button.menu:hover {
    opacity: 1;
    background-color: rgb(244, 249, 162);
    border-radius: 5px;
}

div#menu hr {
    margin-top:5px; 
    margin-bottom:5px;
    border-top: 1px solid blue;
}