/* Navbar */

 /* Navbar container */
.navbar {
  background-color: #333;
  padding: 0px;
}

.navbar li {
    padding-left: 10px;
    padding-right: 10px;
}

/* Links inside the navbar */
.navbar a.nav-link {
  font-size: 16px;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 40px;
  width: 100%;
  transition: none !important;
}


/* Add a red background color to navbar links on hover */
li.nav-item:hover, .dropdown-toggle:hover .dropbtn {
  background-color: #ddd;
}

li.nav-item:hover a, .dropdown-toggle:hover {
  color: black;
  transition: none !important;
}

.dropdown-toggle.show {
    color: black !important;
}

li.nav-item:has(.dropdown-toggle.show){
    background-color: #ddd;

}

li.nav-item:has(a.active) {
  background-color: #04AA6D;
  color: white;
  transition: none !important;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-menu li:has(a:hover) {
  background-color: #aaa;
}

.dropdown-menu a:hover {
  background-color: #aaa;
}

.dropdown-item {
  color: black !important;
  text-align: start;
  width: 100%;
}


