:host,
input,
button,
select,
textarea {
  font-family: 'Roboto', sans-serif;
}

.zea-chip-set {
  color: var(--color-foreground-1);
  display: flex;
  position: relative;
}

zea-user-chip {
  margin-left: -8px;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 19px;
}

.overflow-thumb {
  border: 2px solid var(--color-background-3);
  background-color: var(--color-background-3);
  width: 36px;
  height: 36px;
  color: var(--color-foreground-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 13px;
  margin-left: -8px;
  border-radius: 19px;
  box-sizing: border-box;
  user-select: none;
}

.overflow-tooltip {
  position: absolute;
  top: 35px;

  padding: 4px 7px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--color-foreground-1);
  background-color: var(--color-grey-3);
  z-index: 10000;
  white-space: nowrap;
  display: none;
}

.overflow-thumb:hover .overflow-tooltip {
  display: block;
}

.overflow-list {
  max-height: calc(100vh - 60px);
  width: min-content;
  overflow-y: auto;
  background-color: var(--color-background-2);
  display: none;
}

.overflow-list.shown {
  display: block;
  position: absolute;
}

.overflow-list zea-user-card {
  display: block;
  /* border-top: 1px solid var(--color-grey-3); */
}

.overflow-entry {
  display: flex;
  align-items: stretch;
}

.overflow-entry:hover {
  background-color: var(--color-grey-2);
}

.overflow-entry.shown:hover {
  background-color: transparent;
}

.overflow-entry-collapser {
  margin: 7px 3px 0 5px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: transparent;
  border-radius: 18px;
}

.overflow-entry.shown .overflow-entry-collapser:hover {
  background-color: var(--color-grey-2);
}
