/* Estilos adicionais para o Sudoku Game */
#sudoku-game-root {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Garantir que o jogo seja responsivo */
@media (max-width: 768px) {
    #sudoku-game-root {
        padding: 0;
    }
}

/* Prevenir conflitos com tema WordPress */
#sudoku-game-root * {
    box-sizing: border-box;
}

#sudoku-game-root button {
    cursor: pointer;
}

#sudoku-game-root input {
    outline: none;
}