#output-container {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    height: 100%;
}

/* canvas */
#canvas-area {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    color: rgba(50, 50, 50, 0.75);
    overflow: hidden;
    cursor: move;
    margin: 5px;

   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
    user-select: none;
}

#canvas-div {
    position: absolute;
    margin: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*border: 1px solid var(--color8);*/
}

#coords-label {
    /*display: block;*/
    display: none;
    position: absolute;
    margin: 5px;
    padding: 5px;
    border-radius: 10px;
    background-color: rgba(220, 220, 220, 0.7);
    z-index: 900;
}

#tools-tabs {
    display: none;
    /*display: flex;*/
    position: absolute;
    flex-flow: row nowrap;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
}

.tool-tab {
    --hover-scale: 1.05;
    --toggle-scale: 1.15;
    padding: 5px 20px;
    color: black;
    background-color: var(--color6);
    box-shadow: 0px 0px 1px 1px var(--color8);
    border-radius: 5px 5px 0 0;
}