body{
    font-family: 'JetBrains Mono';
}

#file-input{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#file-input-display.over{
    background-color: #0077ff50;
    margin: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);

    border: 3px dashed #0077ff;
    border-radius: 10px;
}

#graph-container{
    display: grid;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 175px);
    height: 100%;

    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 1fr 1fr;
}

#side-menu{
    position: fixed;
    top: 0;
    right: 0;
    width: 175px;
    height: 100%;

    border-left: 2px dashed #d8d8d8;
}

.chart-container{
    width: 100%;
    height: 100%;
}

/* .chart{
    background-color: lightcoral;
} */

.status{
    margin: 10px;
    background-color: rgba(139, 139, 139, 0.288);
    padding: 10px;
    border: 1px solid rgb(136, 136, 136);
    border-radius: 7px;
}

.status.pass{
    background-color: rgba(0, 128, 0, 0.288);
    border-color: green;
}
.status.observe{
    background-color: rgba(255, 166, 0, 0.5);
    border-color: orange;
}
.status.fail{
    background-color: rgba(255, 0, 0, 0.397);
    border-color: red;
}
.status.checksum{
    color: white;
    background-color: rgba(255, 0, 0, 0.774);
    border-color: rgb(184, 0, 0);
}
.status.wet{
    background-color: rgba(0, 31, 168, 0.288);
    border-color: rgb(3, 17, 212);
}

#counter-container{
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;

    font-size: 18pt;
    white-space: nowrap;
}

#counter{
    display: inline;
    field-sizing: content;
    padding-right: 5px;
    min-width: 18px;

    border: none;
    font-family: 'JetBrains Mono';
    font-size: 18pt;
}

#download-container{
    position: absolute;
    bottom: 7px;
    right: 10px;
    width: 100%;
    text-align: right;
    
    opacity: 0.5;
    pointer-events: none;
}
#download-container > img{
    pointer-events: all;
    padding: 2px;
    border: 2px solid transparent;
    background-color: transparent;
    border-radius: 5px;
}
#download-container > img:hover{
    border-color: black;
    background-color: lightgrey;
}