/* Body zentriert das Panel */
#QuizzMain {
    margin: 0;
    height: 85vh;                  /* gesamte Höhe des Viewports */
    display: flex;
    justify-content: center;         /* horizontal zentrieren */
    align-items: center;             /* vertikal zentrieren */
    background: linear-gradient(135deg, #0b0b10, #4b1f6f); /* optionaler Hintergrund */
    font-family: Arial, sans-serif;
}

/* Lobby Panel */
#LobbyPanel {
    width: 300px;
    padding: 20px;
    background: linear-gradient(135deg, #e9d5ff, #c4b5fd);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Host Slot */
#HostSlot {
    width: 100%;
    padding: 10px;
    background: #baa9ff;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Player Slots */
#PlayerSlots {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.PlayerSlot {
    width: 100%;
    padding: 8px;
    background: #d6c2ff;
    border-radius: 6px;
    text-align: center;
    font-weight: normal;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
