/*
 * Custom ink bar for md-nav-bar: fixed underline that does not scroll with tab items
 */


.md-nav-bar-ink-bar-fixed {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e0e0e0; /* light gray */
  z-index: 2;
  pointer-events: none;
}

/* Ensure the tab bar container is position: relative for absolute ink bar */
md-nav-bar.tabs-scroll-container {
  position: relative;
}
