:root {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2933;
    background: #f6f7f4;
}

body {
    margin: 0;
    background: #f6f7f4;
}

a {
    color: #175e75;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid #d9e1e7;
}

.brand {
    font-weight: 750;
}

.shell {
    width: min(1040px, calc(100% - 2rem));
    margin: 1.25rem auto;
    display: grid;
    gap: 1rem;
}

.panel {
    background: #fff;
    border: 1px solid #d9e1e7;
    border-radius: 8px;
    padding: 1rem;
}

.stack {
    display: grid;
    gap: 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

label {
    display: grid;
    gap: .35rem;
    font-weight: 650;
}

input {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #9aa9b5;
    border-radius: 6px;
    padding: .75rem;
    font: inherit;
}

button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 0;
    border-radius: 6px;
    background: #175e75;
    color: #fff;
    padding: .75rem 1rem;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
}

.secondary {
    background: #53616a;
}

.alert {
    border-radius: 6px;
    border: 1px solid #b7dec9;
    background: #edf7f2;
    padding: .75rem;
}

.errors {
    border-radius: 6px;
    border: 1px solid #efb5aa;
    background: #fff0ed;
    padding: .75rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    padding: .75rem;
    border-bottom: 1px solid #d9e1e7;
}

.checks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .5rem;
}

.check {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 500;
}

.check input {
    width: auto;
}

@media (max-width: 620px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    th:nth-child(3),
    td:nth-child(3) {
        display: none;
    }
}
