* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Lexend, sans-serif;
}

*:focus {
    outline: 0;
}

:disabled{
    background: #777C;
}

html{
    height: 100dvh;
    font-family: Lexend, sans-serif;
}

body {
    height: 100%;
}

header{
    position: sticky;
    top: 0;
    padding: .25rem;
    box-shadow: 0 0 2px #7777;
    background: #FFF;
}

form{
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

textarea{
    padding: .25rem;
    resize: none;
}

button{
    border: 0;
    background: #1F2FE2;
    color: #FFF;
    padding: .5rem;
    font-size: 1rem;
    border-radius: .3rem;
    margin: .25rem;
}

#result{
    display: none;
}

#dist-wrap {
    width: calc(100% - .35rem);
    margin: auto;
    overflow-x: auto;
}

table {
    margin: auto;
    margin-top: .5rem;
    width: 100%;
    border-collapse: collapse;
}

td, th {
    text-align: center;
    padding: .35rem;
}

th {
    font-size: .85rem;
}

tbody:nth-child(even) {
    background: #ccc7;
}

svg {
    margin: auto;
    display: block;
    border-left: .5px solid;
    border-bottom: .5px solid;
}

#result{
    padding: .5rem;
}

#result p{
    margin-bottom: .5rem;
    display: flex;
    flex-direction: column;
}

#stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#graph{
    margin-top: 1rem;
    position: relative;
}

#graph p{
    position: absolute;
    right: .125rem;
}

.label::before{
    content: "";
    display: inline-block;
    width: 1rem;
    border: 1.5px solid;
    margin-right: .5rem;
}

#expected_label::before{
    border-color: #5555FF;
}

#actual_label::before {
    border-color: #FF5555;
}

#actions {
    margin: 1rem auto;
    display: flex;
    justify-content: center;
}

#interpretation {
    margin-top: .25rem;
    display: flex;
    justify-content: space-around;
}