.navbar {
  margin: 0;
  margin-bottom: 1rem;
}

.navbar-ul > li {
  margin: 0 1rem;
  padding: 0.5rem 0;
}

.logout-menu:hover {
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #89c7897f;
}

.dropdown-item:active {
  background-color: rgba(67, 141, 67, 0.498039);
}

.dropdown .dropdown-menu {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  overflow: hidden;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: scale(0.5, 0);
          transform: scale(0.5, 0);
  display: block;
}

.dropdown .dropdown-toggle.active + .dropdown-menu {
  -webkit-transform: scale(1);
          transform: scale(1);
}

