.patients-contact-field--container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 100%;
}

.patients-contact-field--label {
  font-size: var(--rem-13);
  color: var(--neutral-400);
  line-height: 1.3125rem;
}

.patients-contact-field--value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-grow: 1;
  min-width: 0;
  overflow: hidden;

  span {
    min-width: 0;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--rem-14);
    color: var(--neutral-950);
    line-height: 1.375rem;
  }
  
  
}

.patients-contact-field--copy-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: fit-content;
  height: fit-content;
}