/* Overrides injected into RapiDoc's shadow DOM via the css-file attribute
   (RapiDoc clones the matching <link> from the host page's <head>). */

/* Upstream quirk: #api-info ships with margin-left:-15px plus a 15px-wide "|"
   separator before EVERY span — including the first — which offsets the
   "ToothFairyAI Support" line from the rest of the overview. Realign the row
   and drop the leading separator; pipes between items are kept.
   Specificity must beat RapiDoc's adoptedStyleSheets, which apply after
   cloned <link> styles at equal specificity — hence the double ID. */
#overview #api-info {
  margin-left: 0;
}

#api-info span:first-child::before {
  content: none;
  width: 0;
}
