When I use multicolumn in a tabular table, the text is always indented compared to the other rows where no multicolumn is defined.
How can I solve this?
\documentclass{article}
\usepackage{multicol} % define a multicols environment which typesets text in multiple columns
\usepackage{colortbl} % background color for row, columns or individual cells in a table
\usepackage{xcolor} % foreground (text, rules, etc.) and background colour management
\definecolor{beige}{cmyk}{0.16,0.03,0.31,0}
\definecolor{shamrock}{cmyk}{0.71,0.29,1,0.13}
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}m{#1}} % define a new column type for a fixed-width right-aligned column - middle vertical alignment
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}m{#1}} % define a new column type for a fixed-width left-aligned column - middle vertical alignment
\begin{document}
\begin{tabular}{L{110mm} R{35mm}}
\cellcolor{beige}
\textbf{Column title}
& \cellcolor{beige}
\textbf{99.999,99 EUR} \\
\multicolumn{2}{L{145mm}}{
\color{shamrock}I don't understand why this text is left indented. The other text
is not indented in the table. I don't understand why this text is left indented. The other text
is not indented in the table.
} \\
\color{shamrock}Title:
& \color{shamrock}99.999,99 EUR \\
\end{tabular}
\end{document}

