/* Styles for the wasm demo shell: a bare full-viewport canvas on the same
   carbon background as the docs pages that embed it. */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    height: 100%;
    background: #0e0e0e;
    color-scheme: dark;
}
canvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
    outline: none;
    -webkit-user-select: none;
    user-select: none;
}
