quite new to this. Hope you can help, trying to align bullets in a table but cannot get rid of the huge space at the beginning of the cell.
\documentclass[10pt]{article}
\usepackage{enumitem}
\begin{document}
\begin{table}[h]
\renewcommand{\arraystretch}{1.5}
\begin{tabular}{|p{4.5cm}|p{11.2cm}|}
\hline
\textbf{Role} & \textbf{Responsibilities} \\ \hline
Insert Role &
\begin{description}[font=$\bullet$~\normalfont]
\item Insert responsibility
\end{description} \\ \hline
Insert Role & Aufzählung \\ \hline
Insert Role & Aufzählung \\ \hline
Insert Role & Aufzählung \\ \hline
\end{tabular}
\end{table}
\end{document}
Tried \textbullet but this does not leave space between the bullet an the text, but the vertical alignment is then working.
Would like to align the bullets with the first column.
Edit
The code was given, waiting for a small edit to make visible.
Added the \documentclass{article}, \usepackage{enumitem} and \begin{document} ... \end{document} to make compilable.



\textbullet~~Insert responsibilitywhere the tilde~forces some space. – Partha D. May 13 '21 at 09:59