I am a beginner in Latex and I'm trying to learn it to conduct a journal article for Springer. I made a two-column table, with the left column being mostly itemized cells. I'm trying to align the itemized text with the rest of the table's text, but with no results. I'd appreciate some guidance on the matter.
Here is the code I use
\begin{table}[ht]
\caption{Applications Overview}
\label{tab:2}
\begin{tabular}{p{0.25\columnwidth} p{0.35\columnwidth}}
\hline\noalign{\smallskip}
Application Type & Functionality \\
\noalign{\smallskip}\hline\noalign{\smallskip}
Environmental &
\begin{itemize}[leftmargin=*]
\item[] Smart Water Supply
\item[] Smart Agriculture
\item[] Environment Monitoring
\end{itemize} \\
Healthcare &
\begin{itemize}[leftmargin=*]
\item[] Heart Rate Monitoring
\item[] Blood Pressure Monitoring
\item[] Glucometer Monitoring
\item[] Real-Time Locationg of Medical Equipment
\end{itemize} \\
Social &
\begin{itemize}[leftmargin=*]
\item[] Smart Homes
\item[] Smart Surveillance
\item[] Smart Mobility
\item[] Smart Social Interactions
\item[] Smart Shopping
\end{itemize} \\
Energy Management & Smart Grid \\
Industry 4.0 &
\begin{itemize}[leftmargin=*]
\item[] Automated Machinery
\item[] Smart Manufacturing
\end{itemize} \\
Industry 5.0 & Synergy of Human and A.I. \\
\noalign{\smallskip}\hline
\end{tabular}
\end{table}
And here is the result
Thank you in advance!

