body {
    font-family: sans-serif;
}

main {
    margin: auto;
    width: fit-content;
    display: flex;
}

#data-table {
    background-color: gray;
    border-collapse: collapse;
    th, td {
        border: 1px solid black;
    }
    td {
        min-width: 3rem;
        text-align: center;
        height: 1rem;
    }
    .data-row {
        .data-cell-nan {
            color: red;
        }
    }
}

#chart {
    border: 1px solid gray;
    width: 560px;
    height: 346px;
}

#stats {
    math {
        display: block;
    }
}

#modal {
    position: fixed;
    display: none;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: color-mix(in srgb, white, transparent 20%);
}

#modal-box {
    position: fixed;
    top: 10%;
    width: 25%;
    height: 25%;
    text-align: center;
    align-content: center;
    background-color: color-mix(in srgb, white, transparent 5%);
    border: 1px solid black;
}

.modal-visible {
    display: flex !important;
}
