I'm trying to make a table however the contents of certain columns aren't centred correctly.
I'm using the following in my preamble...
\documentclass[11pt,a4paper,twoside, twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[UKenglish]{babel}
\usepackage[UKenglish]{isodate}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{lmodern}
\usepackage{bm}
\usepackage{url}
\usepackage{paralist}
\usepackage{lipsum}
\usepackage{siunitx}
\usepackage{lettrine}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{array}
\newcolumntype{L}{>{\centering\arraybackslash}m{2.75cm}}
\usepackage{todonotes}
\usepackage{titling}
\setlength{\droptitle}{-2em}
\title{}
\author{}
\date{}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\addbibresource{phage.bib}
\usepackage{cleveref}
\usepackage[font=footnotesize,labelfont={bf,sf},justification=centering]{caption}
\usepackage{fancyhdr}
\usepackage{microtype}
And the code so far for my table is as follows:
\begin{table*}[t]
\centering
\begin{tabular}{ccc}
\toprule
Treatment & \multicolumn{2}{c}{No. of survivors/total no. of mice (\% survival)} \\
\midrule
& \multicolumn{2}{c}{Combined experiment} \\
& 48 hpi & 72 hpi \\
\midrule
PAO1 only & Data here & Data here\\
\bottomrule
\end{tabular}
\label{micesurvival}
\caption{Caption here}
\end{table*}
Which outputs like this:

As you can see the 48hpi and 72hpi columns and the following data below aren't centred properly beneath the combined experiment multicolumn.
It's probably something obvious I've overlooked..

