body {
  font-family: 'Inter', sans-serif;
  user-select: none;
  -webkit-user-select: none;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #666;
}

canvas:focus {
  outline: none;
}

.menu-item {
  align-items: center;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  line-height: 1;
  min-height: 24px;
  padding: 0 18px;
  text-align: left;
  width: 100%;
}

.menu-item:hover {
  background: #2563eb;
  color: #ffffff;
}

.menu-popover {
  background: #eeeeee;
  border: 1px solid #8f8f8f;
  box-shadow: 0 18px 42px rgb(0 0 0 / 0.45);
  color: #000000;
  display: none;
  left: 0;
  min-width: 180px;
  padding: 4px 0;
  position: absolute;
  top: 100%;
  z-index: 50;
}

.group:hover > .menu-popover {
  display: block;
}

.menu-popover-right {
  background: #eeeeee;
  border: 1px solid #8f8f8f;
  box-shadow: 0 18px 42px rgb(0 0 0 / 0.45);
  color: #000000;
  display: none;
  left: 100%;
  min-width: 192px;
  padding: 4px 0;
  position: absolute;
  top: 0;
  z-index: 60;
}

.menu-nested:hover > .menu-popover-right {
  display: block;
}

.menu-nested > .menu-item span:last-child {
  font-size: 0;
}

.menu-nested > .menu-item span:last-child::before {
  content: ">";
  font-size: 12px;
}

.menu-separator {
  background: #c7c7c7;
  height: 1px;
  margin: 5px 0;
}
