.conversation-thread,
.voicemail-player {
  display: grid;
  gap: 9px;
}

.conversation-thread {
  max-height: 310px;
  overflow: auto;
}

.thread-message {
  display: grid;
  gap: 4px;
  max-width: 86%;
}

.thread-message span {
  color: #61707a;
  font-size: 10.5px;
  font-weight: 850;
  text-transform: uppercase;
}

.thread-message p {
  border: 1px solid #d9e3e8;
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
  margin: 0;
  padding: 10px 12px;
}

.thread-message.is-business {
  justify-self: end;
}

.thread-message.is-business p {
  background: #e8f4ef;
  border-color: #b8d9ce;
}

.thread-message.is-customer p {
  background: #fff;
}

.call-evidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.call-evidence-row span {
  background: #eef3f4;
  border: 1px solid #dce5e8;
  border-radius: 999px;
  color: #40515d;
  font-size: 11px;
  font-weight: 850;
  padding: 5px 9px;
}

.call-detail-title {
  color: #506572;
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .conversation-thread {
    max-height: none;
  }

  .thread-message {
    max-width: 94%;
  }
}
