* {
    box-sizing: border-box;
    font-family: monospace;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    z-index: 1;
}

#dashboard {
    position: fixed;
    top: .4rem;
    left: .4rem;
    z-index: 2;
    padding: 1rem;
    background: white;
    outline: 1px solid black;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
}

.form-input {
    display: flex;
    flex-direction: column;
}

body.show-cursor #dashboard,
body.has-focused-inputs #dashboard,
#dashboard:active,
#dashboard:focus,
#dashboard:hover {
    opacity: 1;
}


body {
    cursor: none;
}

body.show-cursor {
    cursor: unset;
}