/* Gemeinsame Stile für Spiel-Popups */
/* TicTacToe */
/* Die tictactoe-popup wird per JavaScript angezeigt/versteckt */

.tictactoe-popup .cell {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #333;
    font-size: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.tictactoe-popup .cell:hover {
    background: #e0e0e0;
}

#btn-tictactoe-stats {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

#mode-select {
    margin-bottom: 12px;
}

#multiplayer-ui {
    display: none;
    margin-bottom: 12px;
}

#tictactoe-board {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    grid-gap: 8px;
    justify-content: center;
    margin: 30px auto;
}

#tictactoe-games-list {
    margin-top: 20px;
}

/* Chess */
/* Die chess-popup wird per JavaScript angezeigt/versteckt */
.chess-popup {
    min-width: 520px;
}

#chess-username {
    font-size: 0.7em;
    color: #888;
}

#btn-chess-stats {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

#chess-board {
    width: 480px;
    margin: 0 auto;
}

#chess-games-list {
    margin-top: 20px;
}

/* Quiz */
/* Die quiz-popup wird per JavaScript angezeigt/versteckt */

#btn-quiz-stats {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

#quiz-category {
    font-size: 0.98em;
    color: #888;
    margin-bottom: 8px;
}

#quiz-next {
    display: none;
}

#quiz-score {
    margin-top: 10px;
}
