\begin{frame} {Family work up }
\begin{tikzpicture}[level 1/.style={sibling distance=5cm},level 2/.style={sibling distance=2.5cm}]
\node {Patient}[edge from parent fork down]
child { node {Daughter 32 years}}
child { node {Son 28 years}}
child { node {\color{red} {Daughter 23 years}}}
;
\end{tikzpicture}
\end{frame}
Hi Above code produces a small family tree. I would like to highlight a child (Daughter 23 years) suggesting she also has got a disease. This can be done by encircling it with a box or highlighting it with a color. Kindly help.

