/*Hide KB Tree in right sidebar*/
.widgetItem.treeView {
    display: none;
}

/*Hide "Follow" button in right sidebar*/
.KBArticleRightContainer__userFollowOption {
   display: none;
}


/*---Sidebar shows first on mobile (so that ticket button and table of contents shows first---*/
.Layout__twoColumn {
  display: flex; /* Enable flexbox */
  flex-direction: row; /* Default horizontal layout for larger screens */
}

@media (max-width: 768px) { /* Adjust breakpoint as needed */
.Layout__twoColumn {
    flex-direction: column; /* Stack items vertically on smaller screens */
  }
  .articleDetail .Layout__layout1 {
    order: 2; /* Push the first column to the bottom */
  }
  .articleDetail .Layout__layout2 {
    order: 1; /* Move the second column to the top */
  }
}

