/* Lotus Docs uses custom counters on ol and resets each list; honor start= when Goldmark splits a list (e.g. after tabs). */
.docs-content .main-content ol[start="2"] { counter-reset: listitem 1; }
.docs-content .main-content ol[start="3"] { counter-reset: listitem 2; }
.docs-content .main-content ol[start="4"] { counter-reset: listitem 3; }
.docs-content .main-content ol[start="5"] { counter-reset: listitem 4; }
.docs-content .main-content ol[start="6"] { counter-reset: listitem 5; }
.docs-content .main-content ol[start="7"] { counter-reset: listitem 6; }
.docs-content .main-content ol[start="8"] { counter-reset: listitem 7; }

/* Keep tab blocks visually part of step 1 when nested inside a list item */
.docs-content .main-content ol > li > .docs-tabs {
  margin-top: 0.5rem;
}
