:root {
    --table-shade: #ffffff11;
    --bg: #1d1d24;
    --fg: #e6e0e0;
    --link: #006eff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
}

body {
    width: 100%;
    margin: 0;
    background-color: var(--bg);
    color: var(--fg);
}

.ghost {
    & span {
        text-decoration: line-through;
        opacity: 60%;
    }
    & img {
        filter: grayscale(1) brightness(150%);
    }
}

.d-flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-space-equal > * {
    flex-grow: 1;
}

.flex-grow {
    flex-grow: 1;
}

.w-100 {
    width: 100%;
}

.header {
    display: flex;
    flex-direction: row;
}

.header > img {
    height: 5em;
}

h1 {
    font-size: 48px;
}

table {
    border-collapse: collapse;
}

thead {
    border-bottom: 2px solid var(--fg);
}

tbody > tr:nth-child(even) {
    background-color: var(--table-shade);
}

th:nth-child(1), th:nth-child(4) {
    text-align: left;
}

td:nth-child(2), td:nth-child(5) {
    text-align: center;
}

td {
    text-wrap: nowrap;
    padding: 5px 20px;
}

a > img {
    padding-top: 5px;
    height: 1.5em;
}

a:link, a:visited {
    color: var(--link);
}

th.spacer {
    min-width: 10%;
}
