I have a zebra-striped longtable such as the following:
\documentclass{article}
\usepackage[table]{xcolor}
\usepackage{longtable}
\usepackage{lipsum}
\begin{document}
\lipsum[9-13]
\rowcolors{2}{white}{gray!25}
\begin{longtable}{|m{2cm} m{1.5cm} m{1.5cm} m{1.5cm}|}
\hline
& Value 1 & Value 2 & Value 3 \\ \endhead \hline \endfoot
Item & 0 & 0 & 0 \\
Item & 0 & 0 & 0 \\
Item & 1 & 0 & 0 \\
Item & 2 & 0 & 0 \\
Item & 3 & 0 & 0 \\
Item & 4 & 0 & 0 \\
\end{longtable}
\end{document}
How do I make the coloring restart automatically when the table wraps to a new page so I avoid cases like this where both the header and first row of the new page are white?

