.leg-press-page {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    padding: 1em;
}

.message-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2em;
}

.message-bubble {
    background-color: dodgerblue;
    color: white;
    border-radius: 20px;
    padding: 8px 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-block;

}

.source {
    color: white;
  margin-left: 25%;
  background: dodgerblue;
  background-attachment: fixed;
  position: relative;
}

.source:before {
    content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: -8px;
  height: 20px;
  width: 20px;
  background: dodgerblue;
  background-attachment: fixed;
  border-bottom-left-radius: 15px;
}

.source:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: -10px;
    width: 10px;
    height: 20px;
    background: black;
    border-bottom-left-radius: 10px;
}

.target {
    margin-right: 25%;
  background-color: gray;
  position: relative;
}

.target:before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: -7px;
    height: 20px;
    width: 20px;
    background: gray;
    border-bottom-right-radius: 15px;
  }
  .target:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: -10px;
    width: 10px;
    height: 20px;
    background: black;
    border-bottom-right-radius: 10px;
  }

.reply {
    background-color: gray;
    width: 90vw;
    border-radius: 20px;
    border: 1px solid white;
    padding: 0.5em;
    display: block;
}

.reply-container {
    padding: 1em;
    width: 90vw;
}


