I currently have the following table: 
Which corresponds to the following code:
\documentclass{article}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[font=small,labelfont=bf]{caption}
\usepackage[a4paper,top=2.5cm,bottom=2.5cm,left=2.5cm,right=2.5cm,marginparwidth=1.5cm]{geometry}
\linespread{1.5}
\usepackage{booktabs}
\usepackage{threeparttable}
\usepackage{tabularx}
\usepackage{adjustbox}
\usepackage[flushleft]{threeparttable}
\begin{document}
\begin{table}[h!]
\ra{0.8}
\centering
\caption{bla }
\begin{tablenotes}
\renewcommand\baselinestretch{1}
\small
\item Note: bla.
\end{tablenotes}
\setlength{\tabcolsep}{8pt}
\begin{tabular}{l | c | c c c c }
\toprule
\multicolumn{1}{c}{\bfseries Panel A: Countries}\\
\hline
& Average & Netherlands & Germany & France & Belgium \\ \hline
Netherlands & 3.83 & & & & \\
Germany & 3.87 & & & & \\
France & 3.95 & & & & \\
Belgium & 3.91 & & & & \\
\midrule
\multicolumn{1}{c}{\bfseries Panel B: Clients}\\
\hline
& Average & Advisory & Execution Only & & \\\hline
Advisory & 3.86 & & & & \\
Execution Only & 3.78 & & & & \\
\bottomrule
\end{tabular}\label{tab:VarImportc}
\end{table}
\end{document}
I would like to include two diagonal dashed lines on the right hand sides of both panels (i.e. from Netherlands-Netherlands to Belgium-Belgium and Advisory-Advisory to Exec-Exec).
Also, I was wondering how I can make the first column (Average) distinct from the RHS of the table? I now did it via vertical lines, but it doesn't look very nice.


\tikzmark{start2}\phantom{Advisory}and\tikzmark{end2}\phantom{Execution Only}, and then draw another dashed line further down,\draw[dashed] (start2.north) -- (end2.south);– rbrignall Jan 29 '20 at 10:12