body {
    font-family: 'Courier New', monospace;
    background-color: #111;
    color: #0f0;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    //height: 100vh;
    position: relative;
}

.navbar-left, .navbar-right {
    position: absolute;
    top: 0;
}

.navbar-left {
    left: 20px; /* Abstand nach links */
}

.navbar-right {
    right: 20px; /* Abstand nach rechts */
}

.navbar-left ul, .navbar-right ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 15px;
    margin: 10px 0;
}



.navbar-left ul li, .navbar-right ul li {
    margin: 0;
}

.navbar-left ul li a, .navbar-right ul li a {
    text-decoration: none;
    color: #0f0;
    font-size: 18px;
}

.link ul li a {
    text-decoration: none;
    color: #0f0;
    font-size: 18px;

}

.navbar-left ul li a:hover, .navbar-right ul li a:hover {
    color: #007BFF;
}

.header {
    margin-top: 0px; /* Abstand nach oben für das Logo */
    
    justify-content: center;
    width: 100%;
}

#logo {
    width: 30%;
    height: auto;
}

      input[type="checkbox"],
        input[type="text"],
	input[type="password"],
	input[type="submit"],
        input[type="range"] {
            background-color: #111;
            color: #0f0;
            border: 1px solid #0f0;
            margin: 5px;
            //width: 30px;
        }

        input[type="checkbox"]::after {
            border-color: #0f0;
        }

        input[type="range"] {
            width: auto;
        }

        label {
            margin-right: 5px;
            vertical-align: middle;
        }

        #framerate_value {
            font-weight: bold;
            font-size: 20px;
            vertical-align: middle;
        }




.userdisplay label {
    font-family: 'Courier New', monospace;
    color: #0f0;
    margin-bottom: 10px;
}

.userdisplay select {
    background-color: #111;
    color: #0f0;
    border: 1px solid #0f0;
    margin-bottom: 10px;
    padding: 5px;
    font-family: 'Courier New', monospace;
}

button {
    background-color: #111;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 5px 10px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
}

button:hover {
    background-color: #0f0;
    color: #111;
}

.content {
border: 1px;
color: #0f0;
}

p.dotted {border-style: dotted;}