/* Default tab style */
.nav-pills .nav-link {
  color: #004aad !important;
  background-color: transparent !important;
  font-weight: 600;
  border-radius: 4px;
}

/* Active tab style */
.nav-pills .nav-link.active {
  background-color: #004aad !important;
  color: white !important;
}

/* Hover effect */
.nav-pills .nav-link:hover:not(.disabled) {
  background-color: #004aad20;
  color: #5177aa !important;
}

/* Disabled tabs (greyed out) */
.nav-pills .nav-link.disabled,
.nav-pills .nav-item.show .nav-link.disabled {
  color: grey !important;

  cursor: not-allowed !important;
  opacity: 0.7;
}
