/* Enable horizontal scrolling for navigation tabs */
.md-tabs {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.md-tabs__list {
  min-width: max-content;
  display: flex;
  flex-wrap: nowrap;
}

/* Add scroll indicator arrows on the sides for better UX */
@media (max-width: 1200px) {
  .md-tabs {
    scroll-snap-type: x mandatory;
  }
  
  .md-tabs__item {
    scroll-snap-align: start;
  }
}
