body {
    /*margin: 0;*/
    color: white;
    font-family: system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.1;

    background-color: rgb(62, 62, 62);
    display: block; /* No floating content on sides */
}

#canvas {
    border-radius: 5px;
}

input[type=radio] {
    margin: 0;
}

/*https://moderncss.dev/pure-css-custom-styled-radio-buttons/*/
.menuRadioButton {
    display: grid;
    grid-template-columns: 2em auto;
    accent-color: #ba00e8;
    padding: 5px;
    border-style: solid;
    border-radius: 5px;
    border-width: 2px;
    border-color: rgb(70, 70, 70);
    width: max-content;
}

.menu {
    background-color: black;
    display: flex;
    flex-direction: row;
    width: min-content;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

.menuSegment {
    display: flex;
    flex-direction: row;
    width: min-content;
    align-items: center;
    gap: 10px;
}

.menuDivider {
    width: 5px;
    background-color: rgb(70, 70, 70);
    border-radius: 5px;
}

.squareButton {
    width: 30px;
    height: 30px;
}

button {
    color:white;
    background-color: black;
    border-style: solid;
    border-color: rgb(70, 70, 70);
    border-radius: 5px;
    width: max-content;
}

button:hover {
    background-color: rgb(100, 100, 100);
}

button:active {
    background-color: rgb(70, 70, 70);
}

.disableScroll {
    overflow: hidden; /*  Disable scrollbars */
}

.mouseHidden {
    cursor: none;
}

a:visited {
    color: rgb(215, 53, 255);
}