So I have a table that includes lists written with tabularx, however the lists have rather excess padding at the top and on the left. Is there a way to reduce this only for the space of this table?
Code:
% PRO CON TABLE FOR DIFFERENT TOOLKITS
\begin{table}[h]
\centering
\begin{tabularx}{\textwidth}{|c|X|X|}
\hline
\textbf{Name} & \textbf{Advantages} & \textbf{Disadvantages} \\
\hline
QuTiP &
\begin{itemize}
\item Supervisor is one of the lead developers on the project, so can ask questions and get advice as needed.
\item Widely used, with 371 citations at time of writing, meaning tool may have more value
\end{itemize} &
\begin{itemize}
\item Con
\item Con
\end{itemize}
\\
\hline
(... other lines ...)
\end{tabularx}%
\end{table}


