<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
    height: 100%;
    font: 100%/1.5 sans-serif;
    word-wrap: break-word;
    margin: 0 auto;
    padding: 1.5em;
}

@media (min-width: 768px) {
    html {
        font-size: 125%;
        max-width: 55em;
    }
}

h1, h2, h3, h4 {
    margin: 2.5rem 0 1.5rem 0;
    line-height: 1.25;
    color: #333;
}

a {
    color: #fa6432;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    text-decoration: underline;
}

p {
    margin: 1em 0;
    line-height: 1.5;
}

p code {
    background-color: #eee;
    padding: 0.05em 0.2em;
    border: 1px solid #ccc;
}

li {
    list-style-position: inside;
}

.table-container {
    overflow: scroll;
    max-height: 70vh;
    position: relative;
}

table {
    border-collapse: collapse;
    font-size: 0.85rem;
    font-family: monospace, monospace;
    position: relative;
}

table th, table td {
    padding: 0.15em 0.65em;
    text-align: left;
    min-width: 5em;
}

thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #fff;
}

tbody th {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background-color: #fff;
}

thead th:first-child {
    background-color: #fff;
    left: 0;
    z-index: 4;
}
tbody th:first-child {
    background-color: #fff;
    left: 0;
    z-index: 2;
}

thead th:nth-child(2) {
    background-color: #fff;
    z-index: 3;
}
tbody th:nth-child(2) {
    background-color: #fff;
    z-index: 1;
}

table tr:nth-child(odd) {
    background-color: #eee;
}

table tr:nth-child(even) {
    background-color: #fff;
}

tbody tr:nth-child(odd) th:first-child,
tbody tr:nth-child(odd) th:nth-child(2) {
    background-color: #eee;
}

/* box-shadow: -1px 0 0 0 #ccc, 1px 0 0 0 #ccc, 0 -1px 0 0 #ccc, 0 1px 0 0 #ccc; */

header {
    display: flex;
    justify-content: space-between;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a + a {
    margin-left: 1rem;
}

.dataDiv {
    aspect-ratio: 2/1;
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    padding: 0.5em;
    
}

.mode-switch {
    margin: 20px 0;
    /* text-align: center; */
}

.mode-button {
    background-color: #fa6432;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mode-button:hover {
    background-color: #e56228;
}
</pre></body></html>