.navbar-nav .nav-link {
  position: relative;
  padding-bottom: 0.5rem;
  transition: color 0.15s ease-in-out;
}

.navbar-nav .nav-link.active {
  font-weight: 600;
  color: var(--bs-navbar-active-color) !important;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--bs-primary);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
