I'm making a table of molecule structures and some information about them. A minimum working example looks like this:
\documentclass{article}
\usepackage[version=3]{mhchem}
\usepackage{chemfig}
\begin{document}
\begin{tabular}{|c|c|p{2.5cm}|}
\hline
Compound & Structure & Hazard Protection \\ \hline
Cyclopentadiene & \chemfig{*5(-=-=-)} & Irritant: Avoid skin contact, ingestion, inhalation, use under hood. Flammable: avoid sources of ignition \\ \hline
\end{tabular}
\end{document}
Which looks like this (Dots added to mark area of interest):

I am wondering how to remove the space (Marked with red dots) on the non-structure columns created by the structure column. Removing the structure will do this, resulting in:

But that of course results in me not having the molecule. Is there a way that I make the cells independent of one another so they are always aligned to their top most boarder regardless of if a larger object exists on their row?


