._conversations {
  width: 100%;
}

._addComment {
  margin-top: 10px;
}

._addComment ._commentInput {
  width: 100%;
}

._commentContainer {
  border-style: solid;
  border-width: 1px;
  border-color: #dddddd;
  border-radius: 11px;
  padding: 7px;
  margin-top: 10px;
}

._comment {
  margin-bottom: 10px;
  position: relative;
}

._comment:last-child {
  margin-bottom: 0px;
}

._comment ._commentHeader {
  width: 100%;
}

._comment ._commentAuthor {
  font-weight: bold;
}

._comment ._commentTime {
  font-style: italic;
  font-size: smaller;
}

._comment ._commentText {
  width: 100%;
}

._comment ._commentText .para:last-child {
  margin-bottom: 0px;
}

/*
 * TODO: the _deleteCommentButton code is essentially identical to _deleteInstanceButton.
 * We should really port over to LESS, and refactor these.
 */

._comment ._deleteCommentButton {
  position: absolute;
  right: 5px;
  line-height: 14px;
  background-color: lightpink;
  width: 10px;
  height: 15px;
  text-align: center;
  border: 1px solid;
  cursor: pointer;
}

._comment ._deleteCommentButton {
  display: none;
}

._comment:hover ._deleteCommentButton {
  display: inherit;
}

._commentHighlight {
  background-color: #EEFFEE;
}
