body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Arial, Helvetica, Arial, sans-serif;
}

body {
    font-size: 90%;
}

.footer2 {
    position: fixed;
    left: 0px;
    bottom: 0;
    z-index: 2;
    width: 100%;
    background-color: lightgray;
    text-align: center;
    font-size: 75%;
}

@media (prefers-color-scheme: dark) {
    .footer {
        background-color: #444;
    }
}

.button {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 4px 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
}

.button1 {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50;
}

.button_wide {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50;
    width: 120px;
}

.button_unconfirmed {
    background-color: white;
    color: black;
    border: 2px solid orange;
}

.button1:hover,
.button_wide:hover {
    background-color: #4CAF50;
    /* Green */
    color: white;
}

.button_unconfirmed:hover {
    background-color: orange;
    /* background-color: #4CAF50; */
    /* Green */
    color: white;
}

.red {
    color: #ee0000;
}

.green {
    color: #00bb00;
}

.blue {
    color: #0000ee;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 28px;
    border-radius: 14px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}


/* The container must be positioned relative: */
.custom-select {
    position: relative;
    display: inline-block;
}

.select {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 4px 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: Arial, Helvetica, Arial, sans-serif;
    font-size: 16px;
    margin: 2px 6px;
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
}


#container {
    /* Container holding canvas and texts */
    position: relative;
    width: 960px;
    height: 960px;
    /* border: 10px solid rgb(57, 57, 57); */
}

#container canvas {
    position: relative;
    border: 1px solid rgb(25, 25, 25);
    width: 100%;
    height: 100%;
}

#overlay1 {
    /* Top left text in canvas */
    position: absolute;
    top: 10px;
    left: 10px;
}

#overlay2 {
    /* Top right text in canvas */
    position: absolute;
    right: 10px;
    top: 10px;
    text-align: right;
}