.RoomCodeOn {
    text-align: center;
}
.zentriert {
    text-align: center;
}
.unsichtbar {
    visibility: hidden;
    display: none;
}
.überschrift {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
}
.abstandOben {
    margin-top: 30px;
}
.buttonJoin {
    height: 100px;
    width: 200px;
}
.roomInput {
    max-width: 300px;
}
.black {
    background-color: black;
}
.green {
    background-color: green;
}
.gelb {
    background-color: yellow;
}
.red {
    background-color: red;
}
.roomCode {
    padding-right: 400px;
}

.buzzer {
    width: 300px;
    height: 300px;
    border-radius: 50%;       /* rund machen */
    font-size: 2rem;          /* großer Text */
    background-color: crimson;
    color: rgb(16, 10, 56);
    box-shadow: 0px 0px 50px rgba(87, 87, 87, 0.5);
}
.buzzer:active {
    transform: scale(0.99);       /* etwas kleiner gedrückt */
    background-color: #b30000;   /* dunkleres Rot */
    box-shadow: inset 0 4px 6px rgba(0,0,0,0.3);
}
.buzzer:disabled {
    background-color: #b30000;
}

.buzzer-container {
    display: flex;
    justify-content: center;  /* horizontal zentrieren */
    align-items: center;      /* vertikal zentrieren */
    height: 500px;            /* volle Höhe des Bildschirms */
}

.cardDash {
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 25px;
    margin-bottom: 25px;
    min-height: 200px;
    min-width: 300px;
    max-width: 300px;
    max-height: 280px;
}

.answerInput {
    min-height: 100px;
    max-width: 1000px;
    text-align: center;
}

.hostAnswerInput {
    min-height: 100px;
    max-width: 300px;
    text-align: center;
}

.abstand {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.playerList {
    display: flex;
    justify-content: center;  /* horizontal zentrieren */
    align-items: center;      /* vertikal zentrieren */
    margin-top: 50px;
}