/* SPDX-License-Identifier: AGPL-3.0-or-later */
/* Theme tokens — light + dark */

:root {
    --bg: #ffffff;
    --bg-elevated: #f7f9fc;
    --bg-card: #fbfcfe;
    --border: #d0d8e2;
    --border-strong: #b9d0f0;
    --text: #1a1d24;
    --text-muted: #666;
    --text-soft: #888;
    --accent: #2d6cdf;
    --accent-strong: #1a4fa3;
    --accent-soft: #f0f7ff;
    --warning: #b07900;
    --warning-soft: #fffbeb;
    --success: #2d8a2d;
    --success-soft: #e8f5e8;
    --error: #c33;
    --error-soft: #fff0f0;
}

[data-theme="dark"] {
    --bg: #1a1d24;
    --bg-elevated: #232831;
    --bg-card: #2a2f3a;
    --border: #3a4050;
    --border-strong: #4a5868;
    --text: #e0e6f0;
    --text-muted: #aab;
    --text-soft: #888;
    --accent: #4a8adf;
    --accent-strong: #7ab0ff;
    --accent-soft: #1f2a3a;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    height: 100%;
}

* { box-sizing: border-box; }

button {
    font-family: inherit;
    cursor: pointer;
}

a {
    color: var(--accent);
    text-decoration: none;
}
