/*
 * SPDX-FileCopyrightText: 2023 Armas Scharpegge
 *
 * SPDX-License-Identifier: Apache-2.0
 */

body {
    background-color: #282828;
    color: #ebdbb2;
}

button {
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    background-color: #555555;
    margin-top: 2px;
    margin-bottom: 2px;
    border: 2px solid;
    border-radius: 8px;
    border-color: #aaaaaa;
    cursor: pointer;
}

button:hover {
    background-color: #33aa33;
}

.sliderSpan {
    display: inline-block;
    border: 2px solid;
    border-color: #aaaaaa;
    border-radius: 8px;
    min-height: 100%;
    top: 50%;
}

.slider {
    color: #ebdbb2;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 80px;
    height: 6px;
    border-radius: 5px;
    background: #888;
    opacity: 0.8;
}

.slider:hover {
    color: #33aa33;
    opacity: 1.0;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
    width: 20px;
    height: 20px;
    border: 0px;
    border-radius: 50%;
    background: #eee;
  cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0px;
    border-radius: 50%;
    background: #eee;
  cursor: pointer;
} 

.slider::-webkit-slider-thumb:hover {
    background: #33aa33;
}

.slider::-moz-range-thumb:hover {
    background: #33aa33;;
} 

canvas {
    border: 2px solid;
    border-color: #777777
}

.simControls {
    margin-top: 2px;
    margin-bottom: 5px;
}

.simInfo {
    display: inline-block;
    border: 3px solid;
    border-radius: 0px;
    /*color: #ffffff;*/
    background-color: #383838;
    padding-bottom: 3px;
    padding-top: 3px;
    padding-left: 5px;
    padding-right: 5px;
    border-color: #8466ae; /*bd93f9*/;
    font-size: 18px;
    font-family: monospace;
    /*white-space:pre;*/
}

pre {
    margin: 0px;
}
