#panes{
    display: grid;
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: 60% 40%;
    min-height: 0;
}
#left-pane{
    font-size: 20px;
    height:100%;
    min-height: 0;
    grid-row: span 2;
}
#picture-description{
    padding-left: 5%;
    padding-right: 5%;
    overflow-y: scroll;
    height:100%;
}
#picture-settings{
}
#center-pane{
    display: grid;
    grid-template-rows: 90% 10%;
    min-height: 0;
    grid-row: span 2;
}
#picture-pane{
}

#picture-controls-pane{
    display: grid;
    grid-template-columns: 25% 50% 25%;
    min-width: 0;
}

#right-pane{
    font-size: 14px;
    max-height:100%;
    display: grid;
    grid-template-rows: repeat(10, 10%);
    min-height: 0;
    grid-row: span 2;
}
.preview-button{
    width: 100%;
    height:100%;
    display: grid;
    grid-template-columns: 20% 80%;
    min-height: 0;
}
.preview-button span{
    font-size: 16px;
    text-align: left;
}

@media (max-width: 767px){
    #left-pane,button{
        font-size: 12px;
    }
    .preview-button{
        grid-template-columns: 100% 0%;
    }
    #panes{
        grid-template-columns: 90% 10%;
    }
    #left-pane{
        grid-row: 2 / span 1;
        font-size: 12px;
    }
    #center-pane{
        grid-row: 1 / span 1;
    }

}
