/* HamDun — tngtabs2.css
   Tab navigation overrides for TNG 15.x
   Uses design tokens from templatestyle.css */

ul#tngnav {
  margin: 0 0 0 10px;
}

#tngnav li {
  margin: 0 0 0 1px;
}

/* inactive tab */
#tngnav a {
  color: #4a4a4a;
  background: #f4f3f1;
  padding: 0.4em 1em 0.4em 8px;
  border-right: 1px solid #e8e6e3;
  border-radius: 4px 4px 0 0;
  border-top: 1px solid #e8e6e3;
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* active tab (hover) */
#tngnav a:hover {
  background: #2d5a27;
  color: #ffffff;
}

/* active tab (current) */
#tngnav a.here {
  background: #2d5a27;
  color: #ffffff;
  border-right: 1px solid #2d5a27;
  margin: 0;
}

/* older tab style fallback */
#tabs div {
  margin: 0 1px 0 0;
  padding: 0 0 0.3em 0;
}

#tabs a {
  background: #f4f3f1;
  color: #4a4a4a;
  padding: 0.2em 0.8em 0.5em 0.8em;
  border-right: 1px solid #e8e6e3;
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
}

#tabs a:hover {
  background: #2d5a27;
  color: #ffffff;
}

#tabs .here {
  background: #2d5a27;
  color: #ffffff;
}
