As the two pictures show, the first entry of listoffigures begins further to the right than in the case of my list of abbreviations. Is it - and if yes, how - possible to retrieve the margin-settings used in the listoffigures-environment and to apply these to the acronym-environment?

MWE
\documentclass{scrbook}
\usepackage[demo]{graphicx}
\usepackage{booktabs}
\usepackage{imakeidx}
\makeindex
\usepackage{acronym}
\begin{document}
\chapter*{List of abbreviations}
\begin{acronym}
\acro{3PL}{Third-party logistics}
\acro{APS}{Advanced Planning and Scheduling}
\end{acronym}
\listoffigures
\chapter{First chapter}
\section{Section}
\begin{figure}[htbp]
\centering
\includegraphics{example.png}
\caption{example caption}
\label{fig:example1}
\end{figure}
\index{Figure!Example1}
\end{document}


