Following up my previous question, I need to left-align the entries (below the header Symbol) of the second column of this multi-column table with respect to each other while centering them with respect to their respective column margins without breaking the row colors.
In other words, all the entries of the second column below the header need to virtually have the same width so that they would be left-aligned with each other and centered with respect to their column margins.
\PassOptionsToPackage{table}{xcolor}
\documentclass{article}
\usepackage{siunitx,ragged2e,booktabs,lipsum,adjustbox}
\usepackage[usestackEOL]{stackengine}
\begin{document}
\tabcolsep0pt
\rowcolors{2}{gray!20}{}
\begin{tabular}{
>{\RaggedRight}m{0.5\linewidth}
>{\Centering}m{0.2\linewidth}
S
s
}
\toprule
Parameter & Symbol & \multicolumn{2}{c}{Value} \\
\midrule
DC Motor Rotor Inertia & $J_M$ & 0.6 & \kg\m\squared \\
DC Motor Rotor Damping Coefficient & $D_M$ & 4 & \N\m\per\radian\per\s \\
DC Motor Supply Voltage & $V_ٍ$ & 20 & \V \\
\bottomrule
\end{tabular}
\end{document}



