.yd_class_nav_tab.active-nav-border {
  background: linear-gradient(
    to right,
    rgba(6, 182, 212, 0.15),
    rgba(59, 130, 246, 0.15)
  );
  color: white !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 0.75rem;
}

.yd_class_nav_tab {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.yd_class_nav_tab::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #D97706;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.yd_class_nav_tab:hover::after {
  width: 80%;
}

.yd_class_nav_tab:hover {
  color: #D97706;
}

.yd_class_nav_tab.active::after {
  width: 100%;
}

.yd_class_nav_tab.active {
  color: #D97706 !important;
}