/* Change dropdown menu item background from blue to black */
.dropdown-menu .dropdown-item.active {
  background-color: black !important;
}
.dropdown-menu .dropdown-item:focus {
  background-color: black !important;
}

/* Change list-group menu item colors from blue to black */
.list-group .list-group-item.active {
  background-color: black !important;
  border-color: black !important;
}

.list-group .list-group-item:focus {
  background-color: black !important;
  box-shadow: none !important;
}

/* Rounded corners for navbar images */
.rounded {
  border-radius: 0.375rem !important;
}
