How to set a width of columns to be centered in vertical direction? Or in vertical and horizontal direction and the cells bellow as well? Thank you
\documentclass[12pt,a4paper]{report}
\usepackage{booktabs, makecell, tabularx}
\setlength\textwidth{145mm}
\setlength\textheight{247mm}
\setlength\oddsidemargin{15mm}
\setlength\evensidemargin{15mm}
\setlength\topmargin{0mm}
\setlength\headsep{0mm}
\setlength\headheight{0mm}
\let\openright=\clearpage
\begin{document}
\begin{table}
\small
\renewcommand{\arraystretch}{1.2}
\begin{tabularx}{\textwidth}{>{\hsize=0.2\hsize}X
>{\hsize=0.25\hsize}X
>{\hsize=0.25\hsize}X
>{\hsize=0.3\hsize}X}
\Xhline{1.2pt}\noalign{\vskip 0.4ex}\Xhline{1.2pt}%
Název souboru& Průměrná hodnota chyby& \makecell{Odchylka určení \\ průměrné chyby}& \makecell{Počet středovaných \\ bodů}\\
\Xhline{1.2pt}\noalign{\vskip 0.4ex}
B & A& C& D\\
\Xhline{1.2pt}
\end{tabularx}
\end{table}
\end{document}


