h1.title {
  font-family: "Sergio Trendy";
  color: var(--font);
  font-size: 4em;
  margin: 0px;
  margin-bottom: 10px;
}

h1.title green {
  font-family: "Sergio Trendy";
}

#top-menu {
  padding: 15px 30px;
  height: 100px;
}

#top-menu select {
  border: none;
  outline: none;
  text-shadow: 0 0 0 #000;
}

#bar, #toolbar, #rightbar {
  height: 20px;
  padding: 0;
  display: flex;
}

#bar {
  width: calc(100% - 10px);
  justify-content: space-between;
}

#toolbar > .category {
  font-size: 1em;
  position: relative;
  z-index: 97;
}

#toolbar > .category,
#toolbar > .category > ul > li {
  padding: 2px 5px;
  border-radius: 5px;
}

#toolbar > .category > ul {
  list-style: none;
  width: fit-content;
  min-width: 120px;
  padding: 10px;
  border-radius: 5px;
  background: white;
  position: absolute;
  top: 9px;
  left: 0;
  display: none;
  z-index: 98;
}

#toolbar, #toolbar > .category > ul {
  gap: 5px;
}

#toolbar > .category:hover {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

#toolbar > .category:hover > ul {
  display: block;
}

#toolbar > .category > ul > li:hover {
  background: var(--light-grey);
  cursor: pointer;
}

#toolbar > .category > ul > li.disabled {
  color: grey;
  cursor: not-allowed;
}

#toolbar > button:has(ion-icon) {
  background: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 5px;
}

#toolbar > button > ion-icon {
  vertical-align: middle;
  padding: 0;
}

#toolbar > .category:hover,
#toolbar > .category > ul > li:hover,
#toolbar > button:hover {
  background: var(--light-grey);
}