.context-menu {
  user-select: none;
  position: absolute;
  border: 1px solid #555;
  border-radius: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  background-color: #333;
  z-index: 1;
}

.context-menu-dropdown {
  user-select: none;
  position: absolute;
  border-left: 1px solid #555;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  background-color: #333;
  z-index: 1;
}

.context-menu-item {
  background-color: #333;
  color: white;
  font: 14px Arial;
  padding-left: 21px;
  padding-right: 19px;
  padding-top: 1px;
  padding-bottom: 2px;
}

.context-menu-text {
  background-color: #333;
  color: white;
  font: 14px Arial;
  padding-left: 21px;
  padding-right: 19px;
  padding-top: 1px;
  padding-bottom: 2px;
}

.context-menu-item:hover {
  background-color: #BD3136;
}

.context-menu-hl {
  background-color: #555;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  margin-bottom: 5px;
}