.conversation-filters {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 8px 0 0;
  padding: 0 2px;
  border-bottom: 1px solid #d9e2ee;
  overflow-x: auto;
  scrollbar-width: none;
}
.conversation-filters::-webkit-scrollbar {
  display: none;
}
.conversation-filters button {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 7px 9px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #65758a;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}
.conversation-filters button:hover {
  color: #294d79;
}
.conversation-filters button.active {
  border-bottom-color: #4278b7;
  color: #1f456f;
}
.conversation-filters button i {
  min-width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: #edf2f8;
  color: #66788e;
  font-size: 8px;
  font-style: normal;
}
.conversation-filters button.active i {
  background: #dfeaf8;
  color: #28588e;
}
.conversation {
  padding-right: 104px !important;
}
.conversation > span {
  padding-right: 0 !important;
}
.conversation-star {
  position: absolute;
  right: 70px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid #d4deea;
  border-radius: 7px;
  background: #fff;
  color: #8b99aa;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: 0.16s;
}
.conversation-star:hover {
  border-color: #dbb45c;
  background: #fff9e9;
  color: #a97808;
}
.conversation-star.active {
  border-color: #e0b44b;
  background: #fff7dc;
  color: #a76f00;
}
.conversation-tag {
  display: inline-flex;
  margin-left: 5px;
  padding: 1px 4px;
  border-radius: 4px;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}
.conversation-tag.starred {
  background: #fff1bd;
  color: #8a5b00;
}
.conversation-tag.intervened {
  background: #edf2fb;
  color: #416b9f;
}
.conversation-tag.reported {
  background: #e9f6f1;
  color: #167653;
}
.conversation-unread {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: 7px;
  padding: 0 5px;
  place-items: center;
  border-radius: 999px;
  background: #e52d35;
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  vertical-align: 1px;
}
.conversation.has-unread > span > b {
  font-weight: 850;
}
.conversation-filter-empty {
  padding: 30px 12px;
  color: #8290a3;
  font-size: 10px;
  text-align: center;
}
.star-active-phone {
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 9px;
  border: 1px solid #d4deea;
  border-radius: 7px;
  background: #fff;
  color: #66778c;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}
.star-active-phone span {
  font-size: 14px;
}
.star-active-phone.active {
  border-color: #dfb44e;
  background: #fff7dc;
  color: #986800;
}
body.theme-dark .conversation-filters {
  border-color: #344254;
}
body.theme-dark .conversation-filters button {
  color: #91a0b3;
}
body.theme-dark .conversation-filters button.active {
  border-color: #78a8df;
  color: #dcecff;
}
body.theme-dark .conversation-filters button i {
  background: #263446;
  color: #afc0d3;
}
body.theme-dark .conversation-star,
body.theme-dark .star-active-phone {
  border-color: #3b4a5d;
  background: #1c2735;
  color: #aebdcd;
}
body.theme-dark .conversation-star.active,
body.theme-dark .star-active-phone.active {
  border-color: #9f7b2c;
  background: #302917;
  color: #ffd572;
}
body.theme-dark .conversation-tag.intervened {
  background: #20324b;
  color: #a8c8ee;
}
body.theme-dark .conversation-tag.reported {
  background: #17352b;
  color: #82d5b5;
}
@media (max-width: 480px) {
  .conversation-filters button {
    padding-inline: 6px;
  }
  .star-active-phone {
    padding: 0 7px;
  }
  .star-active-phone {
    font-size: 0;
  }
  .star-active-phone span {
    font-size: 14px;
  }
}
