/* GitLab wiki: make wiki pages fluid / full width */
body:has(.wiki-page-details) .container-limited,
body:has(.wiki-page-details) .limit-container-width,
body:has(.wiki-page-details) .gl-container,
body:has(.wiki-page-details) .content-wrapper,
body:has(.wiki-page-details) .wiki-page-container {
  max-width: none !important;
  width: 100% !important;
}

/* GitLab wiki: make the actual wiki content use available width */
.wiki-page-details {
  max-width: none !important;
  width: 100% !important;
}

/* GitLab wiki: wrap fenced code blocks */
.wiki-page-details pre,
.wiki-page-details pre code {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: normal;
}

