body{
    margin: 0;
    overflow-y: hidden;
}

.footer{
    position: sticky;
    bottom: 0;
    z-index: 1;
    background-color: grey;

    width: 100%;
    min-height: 50px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    
    

}
.controlPanel{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(85, 82, 82);
}
@media screen and (min-width: 960px) {
    .viewport{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        
        background-color: blue;
    }

    .canvas{
        width: 70%;
        background-color: burlywood;
        height: calc(100vh - 100px);
    }

    .controlPanel{
        
        width: 30%;
        height: calc(100vh - 100px);
    }
}
@media screen and (max-width: 959px) {
    .viewport{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        
        background-color: blue;
    }

    .canvas{
        width: 100%;
        background-color: burlywood;
        height: calc((100vh - 100px)/2);
    }

    .controlPanel{


        width: 100%;
        height: calc((100vh - 100px)/2);
        
    }
}

.navBar{
    background-color: grey;
    height: 5vh;
    width: 100%;
    min-height: 50px;
}
.configurationTree{
    /* padding: 10px; */
    display: flex;
    align-self: stretch;
    flex-direction: column;
    align-items: center;
    width:100%;
    height: auto;
    background-color: rgb(197, 197, 197);
    overflow-y: auto;
}


.syncButton{
    font-size: large;
    margin:5px 50px;
    align-self: center;
    width: 150px;
    min-height: 50px;
    border-radius: 10px;
    background-color: white;    
    text-align: center;
}

.syncButton:hover{
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.5);
}
  


.orderButton{
    font-size: large;
    margin:5px 50px;
    align-self: center;
    width: 150px;
    min-height: 50px;
    border-radius: 10px;
    background-color: white;    
    text-align: center;
}

.orderButton:hover{
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.5);
}




.info{
    padding-left: 50px;
    align-self: stretch;
}

.dimensions{
    padding-left: 50px;
}



