/* Narrow the sidebar */
[data-slot="sidebar-wrapper"] {
  --sidebar-width: 180px !important;
}
@media (min-width: 1024px) {
  [data-slot="sidebar-wrapper"] {
    --sidebar-width: 200px !important;
  }
}

/* Code block overflow fix */
pre {
  overflow-x: auto;
  max-width: 100%;
}

code {
  white-space: pre;
  word-wrap: normal;
}

/* Ensure code blocks don't break layout */
.highlight {
  overflow-x: auto;
}

.highlight pre {
  overflow-x: auto;
  max-width: 100%;
}
