body {
    background-color: #000000;
    color: #d0d0d0;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1rem;
}

canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #80808000;
    width: min(calc(min(100vh, 100vw) * 0.9), 1000px);
    height: min(calc(min(100vh, 100vw) * 0.9), 1000px);
    pointer-events: none;
}

table,th,td {
    border: 1px solid #c0c0c0;
    border-collapse: collapse;
}

#performanceDisplay {
    position: absolute;
    width: max-content;
    left: 100%;
    top: 0;
    transform: translate(-100%, 0);
}

#auxDisplay {
    display: none;
    position: absolute;
    width: calc(100% - 20px);
    left: 100%;
    top: 100%;
    transform: translate(-100%, -100%);
    margin: 0;
    padding: 5px;
    color: #808080;
    font-family: monospace;
    font-size: 12px !important;
    z-index: -9;
}

#auxDisplay>p, td {
    color: #ffffff !important;
}

#performanceDisplay>p {
    margin: 0;
    color: #808080;
    font-family: monospace;
    font-size: 12px !important;
    text-align: right;
}

p>a {
    color: #a0a0a0;
}

#parameter {
    display: none;
    z-index: 100;
}

#parameter>input,
#parameter>select {
    margin-bottom: 10px;
    background-color: #202020;
    border: none;
    color: #ffffff;
}

#parameter>button {
    font-size: 14px;
    background: #ffffffa0;
    color: #202020;
}

#parameter>label,#parameter>a {
    margin: 0;
    font-size: 14px;
}

#parameter>a {
    text-decoration: underline;
}

button {
    background: #ffffff20;
    color: #b0b0b0;
}

input[type='number'] {
    appearance: textfield;
    -moz-appearance: textfield;
}

h1,
h2 {
    margin: 4px 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #00000000;
}

::-webkit-scrollbar-thumb {
    background: #808080;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}