I created a table, but it is a little skewed to the right. Any idea how to fix it? The code is :
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{lllllll}
\toprule
\multicolumn{1}{l}{Parameters} &
\multicolumn{2}{c}{Model $A$} &
\multicolumn{2}{c}{Model $B$} \\
\cmidrule(lr){2-3}
\cmidrule(lr){4-5}
&
\multicolumn{1}{c}{Coefficient} &
\multicolumn{1}{c}{95\% Bayesian Interval} &
\multicolumn{1}{c}{Coefficient} &
\multicolumn{1}{c}{95\% Bayesian Interval} \\
\midrule
concern &0.006 & ( -0.036, 0.047) & 0.010 & (-0.029,0.050) \\
\bottomrule
\end{tabular}
\end{document}

