#navImg {
  height: 50px;
  width: auto;
}

/* Default nav-link style */
.nav-link {
  color: black !important;
  text-decoration: none;
  position: relative; /* Needed for the underline */
  transition: color 0.3s ease;
}

/* Hover and active link color */
.nav-link:hover,
.nav-link.active {
  color: red !important;
}

/* Red underline under active nav link */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px; /* Adjust spacing below text */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: red;
}
