.filters {
  grid-template-columns: 1fr 1fr;
}

.filters input {
  grid-column: 1 / -1;
}

.card-origin {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel-badge,
.channel-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.channel-badge.bitrix,
.channel-pill.bitrix {
  color: #075eae;
  background: #e6f1ff;
  border: 1px solid #b7d6f5;
}

.channel-badge.meta,
.channel-pill.meta {
  color: #7a1fa2;
  background: #f5e9fb;
  border-color: #d8b4e8;
}

.channel-badge.web,
.channel-pill.web {
  color: #19723b;
  background: #edf7ef;
  border: 1px solid #bfdfc7;
}

.channel-pill {
  margin-top: 7px;
  font-size: 10px;
}

@media (max-width: 720px) {
  .queue {
    max-height: 46vh;
  }

  .conversation-list {
    max-height: 29vh;
  }

  .conversation {
    min-height: 54vh;
  }
}

@media (max-width: 420px) {
  .filters {
    grid-template-columns: 1fr;
  }

  .filters input {
    grid-column: auto;
  }
}
