*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
}

#canvas{
    width: calc(100% - min(50vw, 400px));
    height: 100%;
    background-image: linear-gradient(rgb(127, 143, 165), rgb(188, 189, 186));
}

#panel{
    width: min(50vw, 400px);
    height: 100%;
    background-color: rgb(204, 204, 204);
    overflow-y: scroll;
}

#panel .sheet{
    width: 100%;
}

#componentwindow{
    position: absolute;
    left: 10px;
    top: 10px;
    width: 20vw;
    height: 20vh;
    background-color: #fff;
}

table{
    width: 100%;
    padding: 10px;
    text-align: left;
}

table td {
    padding: 3px;
}

table .tdright{
    text-align: right;
}


/*👉@media screen and (max-width: 768px){
    #canvas{
        width: calc(100% - 100px);
    }

    #nav{
        width: 100px;
    }
}👈*/

@media (orientation: portrait){
    body{
        flex-direction: column;
    }

    #canvas{
        width: 100%;
        height: 50%;
    }

    #panel{
        width: 100%;
        height: 50%;
    }
}
