Is there a way to format the details information so that it aligns underneath the summary tag? Currently, both lines of text are aligned to the left.
<details>
<summary> Summary 1 </summary>
Details 1
</details>
<details>
<summary> Summary 2 </summary>
Details 2
</details>
<details>
<summary> Summary 3 </summary>
Details 3
</details>
I attempted using text-indent, however, it only indents the summary information and not the details themselves.