/* Стили стартовой страницы. Отдельный файл, потому что CSP запрещает встроенные стили. */
:root {
    color-scheme: light dark;
    --text: #1a1a1a;
    --muted: #555;
    --background: #fff;
    --border: #d8d8d8;
    --accent: #14304f;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: #e8e8e8;
        --muted: #a8a8a8;
        --background: #16181c;
        --border: #333;
        --accent: #9ec5ef;
    }
}

body {
    margin: 0 auto;
    max-width: 52rem;
    padding: 2rem 1rem 4rem;
    background: var(--background);
    color: var(--text);
    font: 1rem/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1 {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

h2 {
    font-size: 1.15rem;
    margin-top: 2rem;
}

a {
    color: var(--accent);
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.95em;
}

.notice {
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: 0.75rem 1rem;
    margin: 1.5rem 0;
}

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

th,
td {
    border-bottom: 1px solid var(--border);
    padding: 0.4rem 0.6rem;
    text-align: left;
    vertical-align: top;
}

th {
    font-weight: 600;
}

footer {
    margin-top: 3rem;
    color: var(--muted);
    font-size: 0.9rem;
}
