.umm-list {
  min-height: 0;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 4px;
  padding-right: 2px;
}

.umm-row {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 54px;
  padding: 7px;
  text-align: left;
}

.umm-row:hover,
.umm-row.has-unread {
  background: rgba(225, 29, 72, 0.08);
}

.umm-row span:not(.umm-avatar) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.umm-row strong,
.umm-row small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.umm-row strong {
  font-size: 12.5px;
  font-weight: 400;
}

.umm-row small {
  font-size: 11px;
}

.umm-row small,
.umm-row em,
.umm-empty,
.umm-window-head small,
.umm-bubble small {
  color: var(--umm-muted);
}

.umm-row em {
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
}

.umm-row b {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-width: 18px;
  min-height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--umm-accent);
  color: #fff1f2;
  font-size: 11px;
}

.umm-thread {
  min-height: 0;
  overflow: auto;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 12px;
  background: #fff1f2;
}

.umm-bubble {
  max-width: 82%;
  justify-self: start;
  display: grid;
  gap: 4px;
}

.umm-bubble span {
  padding: 9px 11px;
  border-radius: 18px 18px 18px 4px;
  background: #ffe4e6;
  line-height: 1.35;
}

.umm-bubble.is-me {
  justify-self: end;
  text-align: right;
}

.umm-bubble.is-me span {
  border-radius: 18px 18px 4px 18px;
  background: var(--umm-primary);
  color: #fff1f2;
}
