.llm-container {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: rgba(100, 149, 237, 0.07) 0% 0% no-repeat padding-box;
  border-radius: 8px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
}

  .llm-container.loading {
    padding-bottom: 50px;
  }

.llm-main-pane {
  display: flex;
}

.llm-robot-container {
  width: 46px;
  height: 46px;
  padding: 8px;
  background-color: #6495ED;
  border-radius: 8px;
  display: flex;
  align-content: center;
  justify-items: center;
  margin-right: 14px;
}

.llm-robot {
  width: 37px;
  height: 37px;
}

  .llm-robot svg {
    fill: white !important;
  }

.llm-loading-anim {
  width: 56px;
  height: 28px;
  background-image: url(../Images/llm_loading.gif);
  background-repeat: no-repeat;
}

.llm-results {
  flex-grow: 1;
  overflow-y:auto;
  max-height: calc(50vh - 108px);
  padding-right: 14px;
  position: relative;
}

  .llm-results::-webkit-scrollbar {
    width: 6px;
  }

  .llm-results::-webkit-scrollbar-track {
    background: rgba(237, 237, 237, 1) 0% 0% no-repeat padding-box;
    border-radius: 30px;
  }

  .llm-results::-webkit-scrollbar-thumb {
    background: rgba(66, 66, 66, 1) 0% 0% no-repeat padding-box;
    border-radius: 30px;
  }

.llm-result {
  display: flex;
}

  .llm-result.User {
    justify-content: flex-end;
  }


.llm-question-container {
  display:flex;
  justify-content: flex-end;
  padding: 30px 0;
  max-width: calc(100% - 200px);
  justify-self:flex-end;
}

.llm-question {
  font-size: 16px;
  color: #323C4E;
  padding: 12px 16px;
  background-color: rgba(100, 149, 237, 0.2);
  border-radius: 8px;
}

.llm-result:first-child .llm-question-container {
  padding: 10px 0 30px 0;
}



.llm-answer {
  font-size: 16px;
  color: #323C4E;
  padding: 20px 20px 10px 20px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  width: calc(100% - 200px);
}

.llm-bottom-pane {
  width: 100%;
  margin-top: 20px;
}

  .llm-bottom-pane input {
    width: 100%;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    height: 48px;
    padding: 14px 11px;
  }

.llm-search-button {
  position: relative;
  border: none;
  background: transparent;
  width: 0;
}

.llm-search-robot {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: #6495ED !important;
  top: 8px;
  right: 8px;
  cursor: pointer;
}

.llm-new-question-container {
  position: relative;
}

.llm-new-question-input:focus-visible {
  outline: none;
}

.llm-new-question-send {
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  cursor: pointer;
  fill: #6495ED;
  overflow: hidden;
}

.llm-citation {
  position: relative;
  width: 14px;
  height: 14px;
  color: rgba(100, 149, 237, 1);
  display: inline-block;
  font-size: 10px;
  text-align: center;
  border-radius: 3px;
  margin-bottom: 10px;
  bottom: 5px;
  text-decoration: none !important;
}

.llm-response-bottom {
  display: flex;
  justify-content: center;
}

.llm-automatic-generated {
  background-color: rgba(244, 244, 244, 0.9);
  color: #323C4E;
  font-size: 12px;
  padding: 2px;
  width: fit-content;
  max-width: calc(100% - 120px);
  text-align: center;
}

.llm-buttons {
  position: absolute;
  right: 160px;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

  .llm-buttons div {
    width: 20px;
    height: 20px;
    cursor: pointer;
    fill: #6495ED;
    overflow: hidden;
  }

.llm-thumb-up.active {
  fill: #216001;
}

.llm-thumb-down.active {
  fill: #AC0C0C;
}
