/* Make header non-sticky */
.md-header {
  position: fixed !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

/* Remove any additional shadow effects */
.md-header--shadow {
  box-shadow: none !important;
}

/* Remove the border from the header */
.md-header--border {
  border-bottom: none !important;
}

/* Hide the footer completely */
.md-footer {
  display: none !important;
}

/* Hide the site title text but keep the logo */
.md-header__title .md-header__ellipsis {
  display: none !important;
}

/* Hide scrollbars for left navigation sidebar */
.md-sidebar--primary .md-sidebar__scrollwrap::-webkit-scrollbar {
  display: none;
}

.md-sidebar--primary .md-sidebar__scrollwrap {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbars for table of contents (right sidebar) */
.md-sidebar--secondary .md-sidebar__scrollwrap::-webkit-scrollbar {
  display: none;
}

.md-sidebar--secondary .md-sidebar__scrollwrap {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}