/* Apply left margin to all unordered and ordered lists in product descriptions or table of contents */
ul,
ol {
    margin-left: 0px; /* Remove default left margin */
    padding-left: 20px; /* Adjust padding for list alignment */
}

/* Apply margin to list items specifically */
ul li, 
ol li {
    margin-left: 0px; /* Optional: Adjust the spacing between list items */
    position: relative; /* Required for positioning the pseudo-element */
}
