@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
--bg: #0b0f14;
--panel: #111823;
--text: #e6edf3;
--border: #273246;
--accent: #7aa2f7;
}

html,
body {
background: var(--bg) !important;
color: var(--text) !important;
}

body,
body * {
font-family: "JetBrains Mono", monospace !important;
}

a {
color: var(--accent) !important;
}

table,
th,
td {
border-color: var(--border) !important;
color: var(--text) !important;
}

thead th,
tr:nth-child(even),
tr:nth-child(odd) {
background: var(--panel) !important;
}

code,
pre {
background: #0f1724 !important;
color: var(--text) !important;
}

.benchmark-title {
    font-size: 18px;
}

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4px;
    font-size: 12px;
}