.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #9e9e9e;
}

:host {
  display: flex;
  flex-direction: column;
}

.list {
  margin: 0;
  padding: 0;
}

li {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
li.item {
  list-style: none;
  margin: 0;
  padding: 8px;
  border-bottom: 1px solid #d5d5d5;
  min-height: 36px;
  box-sizing: border-box;
  width: 100%;
}
li.item:first-of-type {
  border-top: 1px solid #d5d5d5;
}
li.item.clickable:hover {
  cursor: pointer;
}
li.item.toggleable:hover {
  cursor: pointer;
}
li.item.active {
  background-color: rgba(17, 17, 17, 0.1);
}
li.item.active:hover {
  background-color: rgba(17, 17, 17, 0.15);
}
li.item.selected {
  background-color: #ebfbfc;
}
li.item.selected:hover {
  background-color: #e0f8f9;
}
li.item.selected.active {
  background-color: #ccf3f6;
}
li.item.selected.active:hover {
  background-color: #bff0f3;
}
li.item .icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 36px;
}
li.item .icons tttx-icon:hover {
  cursor: pointer;
}
li.item .icons * {
  display: flex;
}
li.item:hover {
  background-color: rgba(17, 17, 17, 0.05);
}

.align-right {
  margin-left: auto;
}

.item-content {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 36px;
}

.checkbox {
  padding: 6px;
  margin-left: -8px;
}