clincalc 0.2.2

Open, auditable clinical calculators: a pure scoring engine plus the `clincalc` CLI in one crate. The engine is a serde-only leaf (build with default-features = false); the default `cli` feature adds the `clincalc` binary.
Documentation
/*
 * App-level overrides that don't fit cleanly in the Mantine theme.
 * Most colour / spacing / typography lives in the theme; keep this thin.
 */

html,
body,
#root {
    height: 100vh;
    margin: 0;
    overflow: hidden; /* AppShell scrolls its own regions */
}

/*
 * The document itself is locked because AppShell owns the layout. Make the
 * main pane the scroll container so long calculator forms and paste-ready
 * summaries remain reachable in the Tauri webview.
 */
.app-main {
    height: 100vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    contain: layout paint;
}

.sidebar-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

/*
 * Subtle grain on the brand wordmark so the teal doesn't feel flat
 * against the chrome.
 */
.brand-wordmark {
    letter-spacing: -0.02em;
    font-weight: 700;
}

/*
 * The "soft interoperability" copy-paste preview is the headline UI. Keep it
 * in the same neutral typeface as the rest of the app so it reads like clinical
 * text, not generated boilerplate.
 */
.clipboard-preview textarea {
    font-family:
        Lato,
        system-ui,
        -apple-system,
        sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
}