.RoomCodeOn {
    text-align: center;
}
.zentriert {
    text-align: center;
    justify-content: 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;
}
.yellow {
    background-color: yellow;
}
.brown {
    background-color: rgb(78, 44, 0);
}
.red {
    background-color: rgb(141, 0, 0);
}
.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;
}

.faqBaseBox {
    margin-left: 40%;
    margin-right: 40%;
}
.faqBox {
    margin-left: 20%;
    margin-right: 20%;
}
.faqAbrunden {
    border-radius: 15px;
}
.faqAbrunden .message-header {
    border-radius: 15px 15px 0px 0px;
}
.faqAbrunden .message-body {
    border-radius: 0px 0px 15px 15px;
}
.faqAbrunden details:not([open]) .message-header {
    border-radius: 15px;
}






/* 1. Die Definition der Bewegung */
@keyframes einfliegen {
    0% {
        opacity: 0;                 /* Start: Komplett durchsichtig */
        transform: translateY(30px); /* Start: 30 Pixel weiter unten */
    }
    100% {
        opacity: 1;                 /* Ende: Sichtbar */
        transform: translateY(0);    /* Ende: Originalposition */
    }
}

/* 2. Die Klasse, die wir den Elementen geben */
.animiert {
    /* Name der Animation | Dauer | Kurve (sanftes Ende) | Zustand behalten */
    animation: einfliegen 1s ease-out forwards;
    opacity: 0; /* Wichtig: Element ist am Anfang unsichtbar, damit es nicht kurz aufblitzt */
}

/* 3. Verzögerungen für nacheinander erscheinende Elemente */
.delay1 { animation-delay: 0.2s; }
.delay2 { animation-delay: 0.4s; }
.delay3 { animation-delay: 0.6s; }
.delayRejoin { animation-delay: 3s; }