/*
static/css/base.css
*/
:root {
    --color-bg: #0f1115;
    --color-surface: #151922;
    --color-surface-2: #1b202a;
    --color-surface-3: #232a36;
    --color-border: #313847;

    --color-text: #f4f6fa;
    --color-text-muted: #b8c0cf;

    --color-accent: #f4f6fa;
    --color-accent-soft: #d7dde8;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;

    --sidebar-width: 250px;
    --topbar-height: 76px;

    --font-base: "Inter", "Helvetica Neue", "Arial", "Noto Sans JP", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    background-color: #0d1015;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #0d1015 0%, #12161d 100%);
    color: var(--color-text);
    font-family: var(--font-base);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}