body {
    color: #343a40;
    background-color: #282c34;
}

header {
    position: relative;
    height: 200px;

}

header .teaser {
    position: relative;
    width: 100%;
    height: 180px;
    margin-left: 0px;
    margin-right: 0px;
    box-shadow: 0 14px 12px 0 rgba(0, 0, 0, 0.17), 0 20px 40px 0 rgba(0, 0, 0, 0.3);
    background-color: #2c313c;
}

header p {}

canvas {
    height: auto;
    margin-bottom: 50px;
}

.canvasContainer {
    border: 1px solid #282c34;
    box-shadow: 0 14px 12px 0 rgba(0, 0, 0, 0.17), 0 20px 40px 0 rgba(0, 0, 0, 0.3);
	border-radius: 0px;
    background-color: #2c313c;
}

.statusMesssages {
    height: 150px;
}

#consoleOutput {
    margin-top: 50px;
    padding: 25px;
    color: #388E3C;
    border: 1px solid #282c34;
    box-shadow: 0 14px 12px 0 rgba(0, 0, 0, 0.17), 0 20px 40px 0 rgba(0, 0, 0, 0.3);
    background-color: #2c313c;
    width: 100%;
    height: 320px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: justify;
    font-size: 11px;
}

#lockoutIndicator {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    text-align: center;
}

#webcam {
    width: 100%;
    height: 230px;
    border: 1px solid #282c34;
    box-shadow: 0 14px 12px 0 rgba(0, 0, 0, 0.17), 0 20px 40px 0 rgba(0, 0, 0, 0.3);
    background-color: #2c313c;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/webcam-placeholder.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

#webcam video {
    width: 100%; // Streckt das Video, um den Container zu füllen
    height: auto;
}

p {
    line-height: 1.625;
    font-weight: 400;
}

.form-select {
    background-repeat: no-repeat;
    background-position: right .5rem center;
    background-position-x: right 0.5rem;
    background-position-y: center;
    background-size: 16px 12px;
}

/**** MOBILE ****/
@media only screen and (max-width: 768px) {
    canvas {
        height: auto;
        width: 100%;
    }
}
