/* Served by express.static on both arms, so a button that fetches it is a test of the middleware
   and of the etag and the conditional request behind it, not only of a file on disk. */
:root {
    color-scheme: light dark;
}

body {
    font:
        15px/1.5 system-ui,
        sans-serif;
    margin: 0;
    padding: 1.25rem;
}

body.fulmine header h1 {
    color: #b45309;
}

body.express header h1 {
    color: #1d4ed8;
}

header h1 {
    margin: 0;
    font-size: 1.4rem;
}

.meta span:not(:last-child)::after {
    content: " \00b7 ";
}

.meta {
    margin: 0.25rem 0 1rem;
    opacity: 0.7;
    font-size: 0.85rem;
}

.hint {
    font-size: 0.85rem;
    opacity: 0.8;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

button {
    font: inherit;
    font-size: 0.85rem;
    padding: 0.35rem 0.6rem;
    border: 1px solid currentColor;
    border-radius: 4px;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

button:hover {
    background: rgba(128, 128, 128, 0.15);
}

table.result {
    margin-top: 1rem;
    border-collapse: collapse;
    width: 100%;
    font-size: 0.85rem;
}

table.result th {
    text-align: left;
    width: 8rem;
    opacity: 0.7;
    font-weight: 500;
    vertical-align: top;
}

pre {
    background: rgba(128, 128, 128, 0.12);
    padding: 0.6rem;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 0.8rem;
    white-space: pre-wrap;
    word-break: break-all;
}
