@font-face {
    font-family: 'Liberation Mono';
    src: url('../fonts/LiberationMono-Regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'STIX Two Text';
    src: url('../fonts/STIXTwoMath-Regular.woff2') format('woff2-variations');
    font-weight: normal;
    font-style: normal;
}

body {
    /* background-color: #02A4FF; */
    background-color: black; 
    color: #ffffff;
    font-family: Helvetica, Arial, sans-serif; 
    font-weight: 300;
    font-size: 24px;
    /*position: fixed; */           /* stop bouncing ... */
    overflow: hidden;
}

.value {
    text-align: left;
    font-weight: bold;
    padding-left: 20px;
}

label {
    font-weight: bold;
}

input {
    width: 125px;
    border-radius: 10px;
    padding-left: 10px;
    font-size: 30px;
}

div.display {
    background-color: #8eb498;
    text-align: end;
    padding: 15px;
    color: black;
    font-family: 'Liberation Mono', monospace;
    font-size: 24px;

    font-weight: 400;
}
.status {
    display: flex;
    justify-content: space-between;
    font: 12pt Arial, Helvetica, sans-serif;
    color: blue;
    padding-bottom: 5px;
}

span.on { }
span.off { color: grey; }

div.b {
    border: 2px solid grey; /*rgb(79,185,227); */
    border-radius: 5px;
    user-select:none;
    -webkit-user-select:none;
    color: white;
    font: 15pt Arial, Helvetica, sans-serif;
    text-align: center;
}

div.shift {
    font: 12pt  Arial, Helvetica, sans-serif;
    color: orange;
    text-align: center;
}

.container {
    display: grid;
    grid-template-areas:
        "m01 m02 m03 m04 m05 m06"
        "m07 m08 m09 m10 m11 m12"
        "m13 m14 m15 m16 m17 m18";
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    padding-bottom: 5px;
}

.container2 {
    display: grid;
    grid-template-areas: 
        "b01 b02 b03 b04 b05"
        "b06 b07 b08 b09 b10"
        "b11 b12 b13 b14 b15"
        "b16 b17 b18 b19 b19";
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
        }

div.b19 {
    grid-area: b19;
   }


span.blackboard-bold {
    font-family: 'STIX Two Text';
    /* font-family: 'Fira Math'; */
}

.modal-header {
    color: blue;
    xxbackground-color: lightblue; 
    border-bottom: 10px;
}

dialog {
    padding: 1em;
    border: 0;
    border-radius: 0.6rem;
    box-shadow: 0 0 1em black;
    font-size: 20px;
    background-color: pink; 
}

dialog::backdrop {
    /* make the backdrop a semi-transparent black */
    background-color: rgba(0, 0, 0, 0.4);
}

.vlist {
    display: flex;
    flex-direction: column;
    /* background-color: pink; */
}
.vlist li {
    border-bottom: 1px solid black;
}

/*
 * .vlist li:active {
    background-color: green; 
}
*/

.vlist li.active {
    background-color: lightblue; 
}

.vlist ul {
    overflow-y: "scroll";
}
