#questionButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#questionButton:hover {
    background-color: #0056b3;
}

.answering-assistant-container {
    background-color: #006bb0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.box-chatgpt {
    color: #fff;
    padding: 15px 15px;
    margin: auto;
}

.chat-answer-container {
    margin-bottom: 1rem;
}

.chat-box {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    white-space: pre-wrap;
    background-color: #f9f9f9;
    color: black;
}

.message {
    padding: 8px 12px;
    border-radius: 8px;
    word-wrap: break-word;
}

.user-message {
    background-color: #006bb0;
    color: white;
    align-self: flex-end;
}

.container-doc .section-main h2 {
    margin-bottom: 10px;
    color: #14171a;
    font-size: 34px;
    position: relative;
}

.box-chatgpt h2 {
    color: #fff !important;
}

/* #answer {
    background-color: #f9f9f9;
    color: black;
} */

pre {
    position: relative;
    background-color: #f5f5f5;
    padding: 15px;
    margin-top: 10px;
    overflow: auto;
    border-radius: 5px;
}

.chat-box pre code {
    display: block;
    background-color: #c4c4ca;
    padding: 10px;
    font-size: 14px;
    white-space: pre-wrap;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #006bb0;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
}

.copy-btn:hover {
    background-color: #0056b3;
}

.language-options {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.radio-option:hover {
  background-color: #015892;
}

.radio-input {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid #d1d5db;
  border-radius: 9999px;
  background-color: white;
  position: relative;
  cursor: pointer;
}

.radio-input:checked::before {
  content: '';
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #006bb0;
  border-radius: 9999px;
  position: absolute;
  top: 2px;
  left: 2px;
}

.radio-label {
  font-size: 1rem;
  color: #fff;
}

.chat-input-container {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border-top: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
  max-width: 800px;
  margin: 0 auto;
}

.chat-textarea {
  flex: 1;
  resize: none;
  padding: 0.75rem 1rem;
  /* border-radius: 10px; */
  border: 1px solid #d1d5db;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 50px;
  max-height: 200px;
  overflow-y: auto;
  transition: border 0.2s ease;
}

.chat-textarea:focus {
  border-color: #006bb0;
  outline: none;
  background-color: #fff;
}

.chat-submit-btn {
  background-color: #006bb0;
  border: none;
  border-radius: 10px;
  padding: 0.75rem;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

.chat-submit-btn:hover {
  background-color: #015892;
}

.icon-send {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}