:root {
    color-scheme: light dark;
    font-family: system-ui, sans-serif;
}

body {
    margin: 0;
    background: #101318;
    color: #e9edf3;
}

main {
    width: min(1100px, calc(100% - 32px));
    margin: 32px auto;
}

h1 {
    font-size: 1.5rem;
}

a {
    color: #8cc8ff;
}

.actions {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 36px;
    margin: 8px 0 16px;
}

button {
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid #5b91c4;
    border-radius: 6px;
    background: #1d5f96;
    color: #fff;
    font: inherit;
    cursor: pointer;
}

button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.score {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    background: #243044;
    font-weight: 700;
}

pre {
    overflow: auto;
    padding: 16px;
    border: 1px solid #384252;
    border-radius: 8px;
    background: #171c24;
    white-space: pre-wrap;
    word-break: break-word;
}

table {
    width: 100%;
    margin: 16px 0 24px;
    border-collapse: collapse;
}

th,
td {
    padding: 8px;
    border: 1px solid #384252;
    text-align: left;
    vertical-align: top;
}

th {
    background: #243044;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
