I'm using the fit package to wrap nodes inside a rectangle, as the code shown below. Is there any way to make some extra space between the node client 3 and the bottom edge of the box?
Code:
\usetikzlibrary{positioning, fit, calc, shapes, arrows}
\renewcommand{\figurename}{Figure}
\begin{figure}[!htb]
\centering
\begin{tikzpicture} [title/.style={font=\fontsize{18}{18}\color{black!45}},
server/.style={rectangle, draw, fill=blue!23, rounded corners, minimum height=8em},
client/.style={rectangle, draw, fill=green!23, rounded corners, minimum height=2em},
dot/.style={circle, fill=black, minimum size=2pt, inner sep=0pt, outer sep=2pt}]
% Place nodes
\node [title] (frontend) at (0, 10) {Clients};
\node [client] (client1) at (0, 9.25) {Client 1};
\node [client] (client2) at ($(client1) + (270:1.15)$) {Client 2};
\node [client] (client3) at ($(client2) + (270:1.15)$) {Client 3};
\node [draw=black!50, fit={(frontend) (client1) (client2) (client3)}] {};
\end{tikzpicture}
\caption{Clients graph}
\end{figure}

inner sep=<amount>to thefitnode, or anouter sep=<amount>to one of theclientnodes. – Peter Grill Sep 19 '12 at 01:15