:root {
    --absolute-background: white;
    --absolute-foreground: black;
}
@media (prefers-color-scheme: dark) {
    :root {
        --absolute-background: black;
        --absolute-foreground: white;
    }
}
body {
    padding: 1rem;
    background-color: var(--absolute-background);
}
table {
    display: block;
    overflow-x: auto;
}
th, td {
    text-align: center;
    color: var(--absolute-foreground);
}
tr > th:first-child, tr > td:first-child {
    font-weight: bold;
    position: sticky;
    left: 0;
}
tr > td:first-child {
    background-color: white !important;
    color: black;
}
tr > td:nth-child(2), tr > td:nth-child(3) {
    white-space: nowrap; /* Do not wrap address or last updated columns */
}
#locations {
    margin-bottom: 0;
}
#locations > * {
    display: inline-block;
    margin-bottom: var(--pico-spacing);
}
a, a:visited {
    color: blue;
    text-decoration-color: blue;
}
#totals {
    display: inline-block;
    margin-top: var(--pico-typography-spacing-vertical);
}
@media (min-width: 350px) {
    #lang-switch {
        margin-right: var(--pico-spacing);
    }
}