/* Minimal sidebar overrides – theme handles behavior */

/* Active nav item: brand color + subtle background */
.md-nav__link--active {
  color: #b5975b !important;
  font-weight: 600 !important;
  background-color: rgba(181, 151, 91, 0.12) !important;
}

/* Hide redundant "Home" label in sidebar */
.md-nav__title:first-child {
  display: none !important;
}

/* Ensure collapsible sections are clickable */
.md-nav__item--nested > .md-nav__link,
.md-nav__item--section > .md-nav__link {
  cursor: pointer;
  user-select: none;
}

/* Only fix layout if there’s an unwanted gap between sidebar and content */
@media screen and (min-width: 76.25em) {
  .md-content {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .md-main__inner,
  .md-content__inner {
    margin: 0 !important;
  }
  .md-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
