.llm-div .llm-chat-container {
    max-width: 100%;
    margin: 20px 0;
    /* padding: 20px; */
}

.llm-div .llm-chat-container #llm-form .form-group {
    margin-bottom: 15px;
}

.llm-div .llm-chat-container #llm-form .form-group #question-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #f6bf41;
    border-radius: 0px;
}

.llm-div .llm-chat-container #llm-form button {
    background: #f6bf41;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
}

.llm-div .llm-chat-container #llm-form button:disabled {
    background: #fff;
    cursor: not-allowed;
}

.llm-div .llm-chat-container .loading {
    color: #f6bf41;
    font-style: italic;
}

.llm-div .llm-chat-container .success {
    background: #fff;
    /* padding: 15px; */
    /* border: 1px solid #f6bf41; */
    border-radius: 0px;
    /* margin-top: 15px; */
}

.llm-div .llm-chat-container .error {
    background: #ffe6e6;
    padding: 15px;
    border-radius: 0px;
    margin-top: 15px;
    color: #d00;
}
.llm-div .llm-chat-container #response-container {
    border: 1px solid #f6bf41;
    padding: 30px;
    position: relative;
    margin: 20px 0;
}
.llm-div .llm-chat-container #response-container .response-btn {
    position: absolute;
    bottom: -20px;
    left:20px;
}
.llm-div .llm-chat-container #response-container .response-btn button {
    border-radius: 50%;
    background: white;
    border: 1px solid #f6bf41;
    height: 40px;
    width: 40px;
    font-size: 0;
}
.llm-div .llm-chat-container #response-container .response-btn button:hover {
    background: #f6bf41;
}
.llm-div .llm-chat-container #response-container .response-btn button:hover img {
    filter: brightness(100);
}
.llm-div .llm-chat-container #response-container .response-btn button img{
    height: 18px;
    width: auto;
}
[data-tooltip] {
  position: relative;
  cursor: pointer;
}
[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  /* left: 50px; */
  transform: translateX(-50%);
  background: #f6bf41;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  margin-bottom: 2px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

[data-tooltip]:hover::after {
  opacity: 1;
}
@media (max-width: 767px) {
    #open-llm-page {
        display: none;
    }
    .llm-div {
        padding-left: 15px;
        padding-right: 15px;
    }

    .llm-div .llm-chat-container .response-container {
        padding: 10px;
    }
}