.navbar-nav .nav-item {
  width: 100%;
  text-align: center;

  @media (min-width: 992px) {
    width: 200px;
    text-align: center;
  }
}

.navbar-nav .nav-link {
  color: black;
  font-weight: 700;
  padding: 10px 0;
  display: block;
}

/* Border hanya muncul jika menu aktif */
.navbar-nav .nav-item .nav-link.active {
  color: red !important;
  position: relative;
}

.navbar-nav .nav-item .nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: red;
  position: absolute;
  bottom: -5px;
  left: 0;
}