/* Increase sidebar width */
.md-sidebar {
  max-width: 320px; /* default is around 260px */
}

/* Increase TOC width and prevent text wrapping */
.md-nav__item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Optional: allow TOC container to scroll horizontally if needed */
.md-nav {
  overflow-x: auto;
}
