
/* Prevent default purple/blue on visited links – keep original navbar color */
.navbar .nav-link,
.navbar .nav-link:visited {
    color: rgba(0, 0, 0, 0.55); /* matches Bootstrap's default light navbar color */
}

/* Optional hover/focus – keep it clean */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: rgba(0, 0, 0, 0.7);
}

/* Active state – use your desired color (I used yellow to match your brand) */
.navbar .nav-link.active,
.navbar .nav-link.active:visited {
    color: #ffc107 !important; /* yellow, same as your school name */
    font-weight: 700;
}

/* For dropdown toggles that are active */
.navbar .dropdown-toggle.active {
    color: #ffc107 !important;
}

/* For dropdown items inside the menu, if you want them highlighted too */
.dropdown-item.active,
.dropdown-item:active {
    background-color: #ffc107;
    color: #000;
}