html, body
{
    margin: 0;
    padding: 0;

    width: 100%;
    height: 100%;
}

body
{
    font-family: sans-serif;
}

*
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.header
{
    width: 100%;
    height: 2.5em;

    padding: .5em 0;

    font-size: 1.2em;
    text-align: center;
}

.content
{
    width: 100%;

    height: calc(100% - (2.5*1.2em));
}

.sidebar
{
    float: left;

    width: 16%;
    height: 100%;
}

.chooser>*
{
    width: 100%;
    height: 50%;
} 

.chooser>*,.chosen>*
{
    padding: .5em;
}

.main-content
{
    float: left;
    position: relative;

    width: 84%;
    height: 100%;
}

.chosen
{
    position: absolute;
    width: 100%;
    height: 100%;
}

.chosen-dim
{
    width: 100%;
    height: 20%;
}

.chosen-measure
{
    width: 20%;
    height: 80%;
}

.chart-container
{
    position: absolute;

    top: 20%;
    left: 20%;

    width: 80%;
    height: 80%;
}

ul.unstyled-list
{
    list-style: none;

    padding: 0;
    margin: 0;
}

.dim-header,.measure-header{
    /*border: 2px solid black;*/
    text-decoration: underline;
    padding-bottom: 1em;
}

.chooser-dim,.chooser-measure,.chosen-dim,.chosen-measure
{
    border: 2px solid black;
}
.chooser-measure{
    border-top: none;
}
.chosen-dim,.chosen-measure
{
    border-left: none;
}
.chosen-measure
{
    border-top: none;
}

li[draggable] {
    background-color: darkcyan;
    color: white;
    padding: .25em .5em;
    margin: .5em 0;
}

.plot-btn
{
    position: absolute;
    left: 1em;
    top: 1em;
}