body {
    margin: 16px;
    font-family: 'National Park', sans-serif;
    background-color: rgb(32, 32, 32);
    color: white;
}

.board > .board-info {
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: end;
}

.board > .board-info > h1 {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.board > .board-info > h1 > svg {
    height: 1em;
    width: 1em;
    fill: rgb(255, 217, 0);
}

.board > .board-info > h2 {
    margin: 0;
    margin-left: auto;
}

.board > table {
    margin: 12px 0;
    width: 100%;
    border-collapse: collapse;
    background: #121212;
    color: rgb(255, 217, 0);
    overflow: hidden;
    text-align: left;
}

.board > table > thead > tr > th {
    padding: 16px 24px;
}

.board > table > tbody td {
    padding: 12px 24px;
    font-size: 0.98rem;
    vertical-align: middle;
    text-transform: none;
}

.board > table {
    table-layout: fixed;
    width: 100%;
}

.board > table > thead > tr > th,
.board > table > tbody > tr > td {
    padding: 12px 24px;
    font-size: 0.98rem;
    vertical-align: middle;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 24px;
}

.board > table > thead > tr > th:nth-child(1),
.board > table > tbody > tr > td:nth-child(1) { 
    text-align: left;
    width: 15%;
}
.board > table > thead > tr > th:nth-child(2),
.board > table > tbody > tr > td:nth-child(2) { 
    text-align: left;
    width: 30%;
}
.board > table > thead > tr > th:nth-child(3),
.board > table > tbody > tr > td:nth-child(3) { 
    text-align: left;
    width: 20%;
}
.board > table > thead > tr > th:nth-child(4),
.board > table > tbody > tr > td:nth-child(4) { 
    text-align: left;
    width: 20%;
}
.board > table > thead > tr > th:nth-child(5),
.board > table > tbody > tr > td:nth-child(5) { 
    text-align: right;
    width: 15%;
}

.cancelled {
    color: #c33;
    font-weight: bold;
}

button {
    background: #161616;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
}

button:disabled {
    background: #090909;
    color: #444;
    border-color: #121212;
    cursor: not-allowed;
}

.fade-out {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 1.9s ease, transform 1.9s ease;
}

tbody tr { transition: background-color 0.2s ease, color 0.2s ease; }
@media (max-width:640px){
    thead th:nth-child(2), tbody td:nth-child(2){ display:none; }
}