/* Optional: baseline if theme doesn't provide dropdown */
.dropdown {
  position: relative;
  display: inline-block;
  margin-left: 2em;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  display: block;
  position: absolute;
  right: 0;
  margin-top: 0.25em;
  background: white;
  border: 1px solid #ccc;
  padding: 0.25em 0;
  z-index: 10000;
}

.dropdown-item {
  display: block;
  padding: 0.25em 0.75em;
  text-decoration: none;
  color: inherit;
}

.dropdown-item:hover {
  background: #eee;
}

.dropdown-item.active {
  font-weight: bold;
  color: #0645ad;
}
