/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 25 2024 | 10:23:18 */
a.underline-hover-effect, .e-n-tab-title-text {
  text-decoration: none;
  color: inherit;
}

.underline-hover-effect, .e-n-tab-title-text {
  display: inline-block;
  padding-bottom: 0.25rem; /* defines the space between text and underline */
  position: relative;
}

.underline-hover-effect::before, .e-n-tab-title-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.25s ease-out;
}

[aria-selected='true'] .e-n-tab-title-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
}


.underline-hover-effect:hover::before , .e-n-tab-title-text:hover::before {
  width: 100%;
}