body {
    background-color: #1a1a1a;
    color: white;
    font-family: sans-serif;
    margin: 0;
    overflow: hidden;
}

#game-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Lobby Layout */
.lobby-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between; /* Text links/mitte, Spieler rechts */
    align-items: center;
    padding: 50px;
}

.player-grid {
    display: flex;
    flex-direction: column; /* Untereinander */
    gap: 20px;
    margin-right: 100px; /* Rechtsbündig versetzt */
}

.player-box {
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.not-ready {
    background-color: #e74c3c; /* ROT */
    border: 2px solid #c0392b;
}

.ready {
    background-color: #2ecc71; /* GRÜN */
    border: 2px solid #27ae60;
    box-shadow: 0 0 15px #2ecc71;