.content-box {
  border-radius: 10px;
  /*
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  */
  position: relative;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 2.7rem;
  /*
  background-color: rgba(50, 50, 49, 1);
  */
  a {
    color: white;
  }
  p {
    padding-bottom: 20px;
  }
}

.animated_list_item {
  padding: 6px;
}

.content-box.summary {
  border: 2px solid #cf4500;
  margin-top: 40px;
  background-color: rgba(207, 69, 0, 0.1);
}

.content-box.user {
  border: 2px solid #929292;
  text-align: right;
  padding-right: 24px;
}

.content-box.ai {
  border: 2px solid #cf4500;
  text-align: left;
  background-color: rgba(207, 69, 0, 1);
}

.img-fluid-conv-icon {
  width: 200%;
  height: 200%;
  object-fit: contain;
}

.content-box.summary::before {
  content: "";
  z-index: -1;
  position: absolute;
  background-color: #cf4500;
  border-radius: 6px;
  right: -6px;
  width: 12px;
  height: 50px;
  top: 15px;
  transform: rotate(45deg);
}

.content-box.summary::after {
  content: "";
  z-index: -1;
  position: absolute;
  background-color: #cf4500;
  border-radius: 6px;
  right: 0px;
  width: 12px;
  height: 40px;
  top: -30px;
  box-shadow: 20px 20px 0 0 #cf4500;
}

.content-box.user::after {
  content: "";
  position: absolute;
  right: -6px;
  width: 12px;
  height: 66%;
  background-color: #888888;
  border-radius: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.content-box.ai::before {
  content: "";
  position: absolute;
  background-color: #cf4500;
  border-radius: 6px;
  right: -6px;
  width: 12px;
  height: 50px;
  top: 15px;
  transform: rotate(45deg);
}

.content-box.ai::after {
  content: "";
  position: absolute;
  background-color: #cf4500;
  border-radius: 6px;
  right: 0px;
  width: 12px;
  height: 40px;
  top: -30px;
  box-shadow: 20px 20px 0 0 #cf4500;
}

.icon {
  /* border: 2px solid #cf4500; */
  border-radius: 50px;
  max-height: 60px;
  max-width: 60px;
  padding: 5px;
}

.icon.ai {
  left: -80px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #cf4500; */
  border-radius: 50%;
  min-width: 65px;
  max-width: 65px;
  min-height: 65px;
  max-height: 65px;
}

.icon.user {
  /*
  background-color: #323231;
  border: 2px solid #929292;
  */
  border-radius: 50%;
  color: #929292;
  min-width: 55px;
  max-width: 55px;
  min-height: 55px;
  max-height: 55px;
}

.icon-svg {
  width: 100%;
  height: 100%;
  fill: white;
  stroke: none;
}

/* Animation for the first content-box */
.animated {
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
