function actionMain () {
  for (const details of document.getElementsByTagName("details") ) {
    details.addEventListener("toggle", (event) => { if (event.target.open) event.target.scrollIntoView() });
  }
}