:root {
  --docs-item-display: none;
}

/* Hide all documentation links by default */
[href^="/docs"],
[data-navbar-item="docs"],
.navbar__items a[href^="/docs"] {
  display: var(--docs-item-display) !important;
}

/* After authentication, show docs links */
body.authenticated [href^="/docs"],
body.authenticated [data-navbar-item="docs"],
body.authenticated .navbar__items a[href^="/docs"] {
  display: inline !important;
}

/* Fix for sidebar in docs section */
body.authenticated .theme-doc-sidebar-container {
  display: flex !important;
}