I'm having a small alignment problem with Biblatex. I have my citations in a separate file and am referencing them as normal. However, I want them horizontally shifted to the right to align with the rest of my text, namely, the numbers should be aligned with the green vertical line (apologies for the bad image):
Here is my code:
\documentclass[11pt]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{red}
%%%% adjust the page margins
\usepackage[scale=0.78, top=0.5in, bottom=0.5in, footskip=0.2cm]{geometry}
\usepackage{eurosym}
\usepackage[T1]{fontenc}
\usepackage[sc,osf]{mathpazo}
\usepackage[maxnames=99, sorting=none]{biblatex}
\usepackage[utf8]{inputenc}
\renewcommand*{\namefont}{\fontsize{20}{20}\mdseries\upshape}
\addbibresource{publications.bib}
% personal data
\name{Name}{Name}
\phone[mobile]{111-111-1111}
\begin{document}
\makecvtitle{\vspace{-1.0cm}}
\section{Education}
\cventry{2021 -- 2022}{Master of Science in Computer Science}{XXX}{XXX}{}{GPA: 4.0/4.0}
\cventry{2018 -- 2021}{Bachelor of Science in Computer Science}{XXX}{XXX}{GPA: 3.99/4.0}{Summa Cum Laude\endgraf Accepted to Accelerated Bachelor's to Master's Program\endgraf Accepted to Disciplinary Honors Program}
\cventry{2017 -- 2018}{Transfer Degree}{XXX}{XXX}{GPA: 4.0/4.0}{}
\section{Experience}
\nocite{*}
\printbibliography[title={Research}]
\section{Interests}
\end{document}
I feel like this is a very silly and simple problem to fix, but I just can't figure it out. Any help would be greatly appreciated!


