﻿:root {
    --bg-page: #f6f8fb;
    --bg-surface: #ffffff;
    --bg-soft: #f3f5f9;
    --border: #e5e9f2;
    --border-strong: #d8dee9;
    --text: #1f2937;
    --text-muted: #6b7280;
    --accent: #4f7cff;
    --success: #16a34a;
    --danger: #ef4444;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

* {
    box-sizing: border-box;
}

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

h2, h3 {
    margin: 0;
}

.muted {
    color: var(--text-muted);
}

.small {
    font-size: 13px;
}
