@charset "UTF-8";.search-container {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 29px;
  height: 100%;
  border-radius: 3px;
  display: flex;
  color: black;
  flex: 1;
  transition: width 0.4s ease-out;
  overflow: hidden;
  justify-content: center;
  background-color: white;
  /**tab start**/
  /**tab end **/
}
.search-container .ant-tabs-top > .ant-tabs-nav::before {
  height: 2px;
  background: #E0E7EB;
}
.search-container .ant-tabs-nav-wrap {
  height: 50px;
}
.search-container .ant-tabs-nav-list .ant-tabs-tab {
  color: #545252;
}
.search-container .ant-tabs-nav-list .ant-tabs-ink-bar {
  background-color: #6BB100;
}
.search-container .ant-tabs-nav-list .ant-tabs-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-container .ant-tabs-nav-list .ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #6BB100;
}
.search-container .ant-tabs-nav-list .tab-title {
  font-size: var(--font-size-4);
  text-align: left;
  font-style: normal;
  margin-right: 10px;
}
.search-container .ant-tabs-nav-list .tab-status-title {
  font-size: var(--font-size-6);
  text-align: left;
  font-style: normal;
}
.search-container .ant-tabs-nav-list .source-title {
  font-size: var(--font-size-4);
  text-align: left;
  font-style: normal;
}
.search-container .ant-tabs-nav-list .source-number {
  font-size: var(--font-size-6);
  text-align: left;
  font-style: normal;
  margin-left: 5px;
  transition: all 0.3s ease;
}
.search-container .ant-tabs-nav-list .source-number.animated-number {
  display: inline-block;
  position: relative;
  font-weight: 600;
}
.search-container .ant-tabs-nav-list .source-number.animated-number.animate {
  animation: numberPulse 0.6s ease-out;
}
.search-container .query {
  border-radius: 8px;
  background: #eff6ff;
  color: #131313;
  padding: 10px;
  font-weight: 500;
  float: right;
}
.search-container .thinking {
  clear: both;
  border-top: 1px solid #d6cfcf;
}
.search-container .left {
  width: calc((100vw - var(--bar-width)) * 0.55);
  transition: width 0.4s ease-out;
  overflow: hidden;
  color: rgb(52, 50, 45);
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  position: relative;
}
.search-container .left .search-tabs-container {
  padding: 0px;
  flex: 1;
}
.search-container .left .search-tabs-container .ant-tabs-nav {
  padding-left: 16px;
}
.search-container .left .search-tabs-container .ant-tabs-content,
.search-container .left .search-tabs-container .search-tabs,
.search-container .left .search-tabs-container .ant-tabs-tabpane {
  height: 100%;
}
.search-container .left ol li::marker {
  color: #ffffff;
}
.search-container > .right {
  display: flex;
  width: calc((100vw - var(--bar-width)) * 0.45);
  transition: width 0.4s ease-out;
  overflow: auto;
  scrollbar-width: var(--scrollbar-width);
  scrollbar-color: var(--scrollbar-color);
  background: #F7FAFC;
  border: 1px solid #E2E8F0;
}
.search-container.showRight > .middle {
  width: 0px;
}
.search-container.showRight > .right {
  flex: 1;
  transition: width 2s;
  display: flex;
  overflow-y: scroll;
  scrollbar-width: var(--scrollbar-width);
  scrollbar-color: var(--scrollbar-color);
  flex-direction: column;
  border-left: dashed 1px #d6cfcf;
  margin: auto 5px 15px auto;
  overflow-y: scroll;
  height: 100%;
  background: #F7FAFC;
  border: 1px solid #E2E8F0;
}
.search-container.showRight > .right iframe {
  border: none;
  width: 100%;
  flex: 1;
  background: white;
}
.search-container.showRight > .right .progress {
  height: 50px;
  border-radius: 10px;
  border: solid 1px #e6e0e0;
  padding: 8px;
  margin-bottom: 10px;
}
.search-container .terminateWrap {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
}
.search-container .terminateWrap .progress {
  width: 100px;
  height: 30px;
  background: black;
  color: white;
  text-align: center;
  border-radius: 5px;
}
.search-container .terminateWrap button {
  margin-left: 10px;
  width: 130px;
  height: 30px;
  border-radius: 5px;
}
.search-container ul li p {
  text-indent: 0px;
}

.search-input-container {
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0px -2px 13px 0px rgba(216, 216, 216, 0.7);
}

@keyframes numberPulse {
  0% {
    transform: scale(1);
    color: inherit;
  }
  25% {
    transform: scale(1.15);
    color: #6BB100;
  }
  50% {
    transform: scale(1.1);
    color: #6BB100;
  }
  75% {
    transform: scale(1.05);
    color: #6BB100;
  }
  100% {
    transform: scale(1);
    color: inherit;
  }
}.markdown-navigation {
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", "Arial", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  width: 100%;
  overflow: hidden;
}

.markdown-navigation .title-anchor {
  display: block;
  color: #bbb;
  transition: all 0.2s;
  margin: 0.8em 0;
  font-weight: lighter;
  line-height: 2em;
  padding-right: 1.8em;
  cursor: pointer;
}

.markdown-navigation .title-anchor:hover{
  background-color: #f8f8f8;
  color: #007fff;
  
}
/* .markdown-navigation .title-anchor.active {
  background-color: #f8f8f8;
  text-decoration: inherit;
} */

/* .markdown-navigation .title-anchor.active {
  color: #007fff;
} */

.markdown-navigation .title-anchor small {
  margin: 0 0.8em;
}

.markdown-navigation .title-level1 {
  color: #000;
  font-size: 1.2em;
  padding-left: 1em;
  font-weight: normal;
}

.markdown-navigation .title-level2 {
  color: #000;
  font-size: 1em;
  padding-left: 1.5em;
  font-weight: normal;
}

.markdown-navigation .title-level3 {
  color: #222;
  font-size: 0.9em;
  padding-left: 3em;
  font-weight: normal;
}

.markdown-navigation .title-level4 {
  color: #444;
  font-size: 0.8em;
  padding-left: 5em;
}

.markdown-navigation .title-level5 {
  color: #444;
  font-size: 0.8em;
  padding-left: 6.5em;
}

.markdown-navigation .title-level6 {
  color: #444;
  font-size: 0.8em;
  padding-left: 8em;
}

-navigation .title-level5 {
  color: #444;
  font-size: 0.8em;
  padding-left: 6.5em;
}

.markdown-navigation .title-level6 {
  color: #444;
  font-size: 0.8em;
  padding-left: 8em;
}


.thinking-container {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e0 #edf2f7;
  height: calc(100vh - 130px);
  padding: 0px 20px 15px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  /** Foldable start */
}
.thinking-container .thinking-popup {
  background: #4CAF50 !important;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  /* Slightly more rounded */
}
.thinking-container .question-container .question-wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
}
.thinking-container .question-container .question {
  padding: 10px;
  height: 100%;
  font-size: var(--font-size-6);
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: left;
  font-style: normal;
  background: #84CC16;
  border-radius: 16px;
  display: flex;
  align-items: center;
}
.thinking-container .question-container .question-icon {
  font-size: 32px;
  text-align: center;
  margin-left: 16px;
}
.thinking-container .foldable-group .foldable-title {
  display: flex;
  align-items: center;
  border-radius: 4px;
  background: transparent;
  padding: 5px 12px 5px 0px;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--font-size-4);
  color: #1E293B;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.thinking-container .foldable-group .foldable-title .folable-title-icon {
  margin-right: 8px;
}
@keyframes blink {
  0% {
    fill: rgb(109, 198, 68);
  }
  50% {
    fill: rgb(170, 230, 140);
  }
  100% {
    fill: rgb(109, 198, 68);
  }
}
.thinking-container .foldable-group .foldable-title .folable-title-icon.blink g {
  animation: blink 1.5s infinite;
  /* 初始填充颜色 */
  fill: rgb(109, 198, 68);
}
.thinking-container .foldable-group .foldable-title .up-icon,
.thinking-container .foldable-group .foldable-title .down-icon {
  font-size: 18px;
}
.thinking-container .foldable-group .abstract {
  font-size: var(--font-size-6);
  line-height: 22px;
  font-weight: 500;
  text-align: left;
  word-wrap: break-word;
}
.thinking-container .foldable-group .foldable-markdowns-group {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #B4BBBF;
  padding: 16px 16px 6px 16px;
  overflow: hidden;
  animation: slideDown 0.4s ease-out;
}
@keyframes slideDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.thinking-container .foldable-group .foldable_markdown {
  background-color: white;
}
.thinking-container .foldable-group .foldable_markdown .link {
  cursor: pointer;
}
.thinking-container .foldable-group .foldable_markdown .tag {
  position: relative;
  font-size: var(--font-size-6);
  font-weight: 500;
  color: #6BB100;
  line-height: 22px;
  text-align: left;
  word-wrap: break-word;
}
.thinking-container .foldable-group .foldable_markdown .STRATEGY {
  margin-top: 10px;
  /* 容器样式 */
  /* 每个li元素的样式 */
  /* 数字标题的样式 */
  /* 初始化计数器 */
}
.thinking-container .foldable-group .foldable_markdown .STRATEGY ol {
  counter-reset: item;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.thinking-container .foldable-group .foldable_markdown .STRATEGY li {
  display: flex;
  font-size: 16px;
  color: #352F44;
  line-height: 19px;
  text-align: left;
}
.thinking-container .foldable-group .foldable_markdown .STRATEGY li::before {
  content: counter(item);
  counter-increment: item;
  display: block;
  border: solid 1px;
  margin-right: 5px;
  width: 18px;
  height: 18px;
  background: #666;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}
.thinking-container .foldable-group .foldable_markdown .STRATEGY ul {
  counter-reset: item;
  /* 初始化计数器 */
}
.thinking-container .foldable-group .selected-revisit {
  border-radius: 15px;
  border: solid 2px var(--primary-color);
}
.thinking-container .revisit {
  display: block;
  width: 90px;
  height: 34px;
  background: #EEF2F4;
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  margin-top: 8px;
}
.thinking-container .revisit:before {
  width: 16px;
  height: 16px;
  content: url("../img/revisit.svg");
  background-size: cover;
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 8px;
  cursor: pointer;
}
.thinking-container .revisit:hover::before {
  content: url("../img/revisitHover.svg");
  cursor: pointer;
}
.thinking-container .revisit:after {
  content: "Revisit";
  background-size: cover;
  position: absolute;
  z-index: 1;
  left: 29px;
  top: 5px;
  cursor: pointer;
}
.thinking-container .revisit:hover {
  cursor: pointer;
  background: rgba(132, 204, 22, 0.17);
  font-weight: 400;
  font-size: 14px;
  color: #6BB100;
}
.thinking-container .revisit:hover::after {
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
}
.thinking-container .loading {
  display: flex;
  align-items: center;
}
.thinking-container .loading .loading-text {
  margin-left: 10px;
}
.thinking-container .final-report {
  margin-top: 15px;
}
.thinking-container .final-report .down-btn {
  width: 259px;
  height: 44px;
  background: #84CC16;
  border-radius: 37px;
  border: 1px solid #6BCE00;
  display: flex;
  align-items: center;
  font-size: var(--font-size-5);
  color: #FFFFFF;
  line-height: 26px;
  text-align: center;
  padding-left: 10px;
  cursor: pointer;
}
.thinking-container .final-report .down-btn .anticon {
  margin-left: 10px;
  margin-right: 5px;
  font-size: 25px;
}
.thinking-container .final-report .down-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #9d9c9c;
}
.thinking-container .download-progress-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}
.thinking-container .download-progress-overlay .download-progress-container {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 300px;
  max-width: 400px;
}
.thinking-container .download-progress-overlay .download-progress-container .download-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.thinking-container .download-progress-overlay .download-progress-container .download-progress-header .download-progress-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.thinking-container .download-progress-overlay .download-progress-container .download-progress-header .download-progress-cancel {
  color: #666;
  font-size: 12px;
}
.thinking-container .download-progress-overlay .download-progress-container .download-progress-header .download-progress-cancel:hover {
  color: #ff4d4f;
}
.thinking-container .download-progress-overlay .download-progress-container .download-progress-text {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.thinking-container .download-progress-overlay .download-progress-container .ant-progress .ant-progress-bg {
  background: #84CC16;
}
.thinking-container .download-progress-overlay .download-progress-container .ant-progress .ant-progress-text {
  display: none;
}

.ant-message-notice-content.bottom-slide-toast {
  animation: slideUpFromBottom 0.5s ease-out !important;
}

@keyframes slideUpFromBottom {
  0% {
    transform: translateX(-50%) translateY(100px) !important;
    opacity: 0 !important;
  }
  100% {
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1 !important;
  }
}
.markdown-body {
  color: #000;
  background: #F8FAFC;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  padding: 16px 16px 16px 16px;
  margin-bottom: 12px;
  font-size: var(--font-size-6);
  color: #1E293B;
  line-height: 22px;
  text-align: left;
  position: relative;
  h5-font-size: var(--font-size-6);
  h5-margin: 10px 0px 10px 0px;
  h5-font-weight: 300;
  h6-font-size: var(--font-size-6);
  h6-margin: 10px 0px 10px 0px;
  h6-font-weight: 200;
  /* 可选：隔行浅灰 */
}
.markdown-body .subscript-tag {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background-color: #e5e5e8;
  margin-right: 2px;
  border-radius: 10px;
  font-size: 11px;
  color: #252424;
}
.markdown-body .subscript-tag:hover {
  background-color: #2c2c2e;
  color: #ffffff;
}
.markdown-body p {
  font-size: 14px;
  line-height: 1.5;
}
.markdown-body .foldable {
  position: absolute;
  right: 10px;
  top: 10px;
}
.markdown-body .foldable:hover {
  color: red;
}
.markdown-body pre code {
  display: block;
  width: 0px;
}
.markdown-body img {
  display: block;
  width: 150px;
  border-radius: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.markdown-body hr {
  height: 0.1em;
}
.markdown-body.pb12 {
  padding-bottom: 12px;
}
.markdown-body h1 {
  font-size: var(--font-size-4);
  margin: 10px 0px 10px 0px;
  font-weight: 500;
}
.markdown-body h2 {
  font-size: var(--font-size-5);
  margin: 10px 0px 10px 0px;
  font-weight: 500;
}
.markdown-body h3 {
  font-size: var(--font-size-6);
  margin: 10px 0px 10px 0px;
  font-weight: 500;
}
.markdown-body h4 {
  font-size: var(--font-size-6);
  margin: 10px 0px 10px 0px;
  font-weight: 400;
}
.markdown-body ol {
  padding: 20px;
  padding-left: 0px;
  counter-reset: my-counter;
  list-style: none;
}
.markdown-body ol li {
  width: 100%;
  text-align: left;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}
.markdown-body ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  display: block;
  position: absolute;
  left: 0px;
  top: 1px;
  width: 20px;
  height: 20px;
  background: #352F44;
  border-radius: 10px;
  line-height: 20px;
  text-align: center;
  color: #fff;
}
.markdown-body ul {
  padding: 10px 0px;
  padding-left: 30px;
  list-style: disc !important;
}
.markdown-body ul li {
  width: 100%;
  text-align: left;
  cursor: pointer;
  line-height: 1.8;
  position: relative;
}
.markdown-body ul li::before {
  display: block;
  position: absolute;
  left: 0px;
  top: 1px;
  width: 20px;
  height: 20px;
  background: #352F44;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}
.markdown-body p {
  font-size: var(--font-size-6);
}
.markdown-body table {
  width: 100%;
  margin: 1em auto;
  border-collapse: collapse;
  font-size: 0.95em;
  /* 略小于正文 */
  line-height: 1.3;
}
.markdown-body table caption {
  caption-side: top;
  font-weight: 600;
  margin-bottom: 0.5em;
  text-align: center;
}
.markdown-body table thead tr {
  border-bottom: 2px solid #000;
  /* 第一条粗线 */
}
.markdown-body table tbody tr:last-child {
  border-bottom: 1px solid #000;
  /* 第三条细线 */
}
.markdown-body table th,
.markdown-body .paper-table td {
  padding: 0.4em 0.6em;
  text-align: left;
}
.markdown-body table th {
  font-weight: 600;
}
.markdown-body table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}.question-badges {
  margin-bottom: 10px;
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: end;
  padding-right: 50px;
}

.question-badge {
  height: 42px;
  border-radius: 24px;
  font-size: var(--font-size-7);
  color: #5A5667;
  line-height: 26px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}.header-switch {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 2px 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #666;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.header-switch.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}.explore-container {
  flex: 1;
  overflow-y: hidden;
  min-height: 0px;
  background: #F7FAFC;
  position: relative;
  display: flex;
  flex-direction: column;
}
.explore-container iframe {
  border: none;
}
.explore-container .explore-main {
  width: 100%;
  padding: 15px;
  flex: 1;
  overflow: auto;
}
.explore-container .explore-main .markdown-body {
  padding: 15px !important;
  background-color: white !important;
  word-wrap: break-word;
}
.explore-container .loading {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 10px;
  top: 10px;
}
.explore-container iframe {
  width: 100%;
  height: 100%;
}
.explore-container > img {
  max-width: 100%;
  object-fit: contain;
  flex: 1;
}

.video-container {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}
.video-container video {
  flex: 1;
}

.explore-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.explore-container > img {
  max-width: 100%;
  object-fit: contain;
  flex: 1;
}

.video-container video {
  flex: 1;
}

video::-webkit-media-controls-enclosure {
  display: none;
}
video::-webkit-media-controls-fullscreen-button, video::-webkit-media-controls-play-button, video::-webkit-media-controls-timeline, video::-webkit-media-controls-current-time-display, video::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-mute-button, video::-webkit-media-controls-toggle-closed-captions-button, video::-webkit-media-controls-volume-slider {
  display: none;
}/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

:root {
  --react-pdf-annotation-layer: 1;
  --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
  --input-focus-border-color: Highlight;
  --input-focus-outline: 1px solid Canvas;
  --input-unfocused-border-color: transparent;
  --input-disabled-border-color: transparent;
  --input-hover-border-color: black;
  --link-outline: none;
}

@media screen and (forced-colors: active) {
  :root {
    --input-focus-border-color: CanvasText;
    --input-unfocused-border-color: ActiveText;
    --input-disabled-border-color: GrayText;
    --input-hover-border-color: Highlight;
    --link-outline: 1.5px solid LinkText;
  }
  .annotationLayer .textWidgetAnnotation :is(input, textarea):required,
  .annotationLayer .choiceWidgetAnnotation select:required,
  .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
    outline: 1.5px solid selectedItem;
  }

  .annotationLayer .linkAnnotation:hover {
    backdrop-filter: invert(100%);
  }
}

.annotationLayer {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform-origin: 0 0;
  z-index: 3;
}

.annotationLayer[data-main-rotation='90'] .norotate {
  transform: rotate(270deg) translateX(-100%);
}
.annotationLayer[data-main-rotation='180'] .norotate {
  transform: rotate(180deg) translate(-100%, -100%);
}
.annotationLayer[data-main-rotation='270'] .norotate {
  transform: rotate(90deg) translateY(-100%);
}

.annotationLayer canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

.annotationLayer section {
  position: absolute;
  text-align: initial;
  pointer-events: auto;
  box-sizing: border-box;
  margin: 0;
  transform-origin: 0 0;
}

.annotationLayer .linkAnnotation {
  outline: var(--link-outline);
}

.textLayer.selecting ~ .annotationLayer section {
  pointer-events: none;
}

.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a:hover {
  opacity: 0.2;
  background: rgba(255, 255, 0, 1);
  box-shadow: 0 2px 10px rgba(255, 255, 0, 1);
}

.annotationLayer .textAnnotation img {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea),
.annotationLayer .choiceWidgetAnnotation select,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  background-image: var(--annotation-unfocused-field-background);
  border: 2px solid var(--input-unfocused-border-color);
  box-sizing: border-box;
  font: calc(9px * var(--scale-factor)) sans-serif;
  height: 100%;
  margin: 0;
  vertical-align: top;
  width: 100%;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):required,
.annotationLayer .choiceWidgetAnnotation select:required,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
  outline: 1.5px solid red;
}

.annotationLayer .choiceWidgetAnnotation select option {
  padding: 0;
}

.annotationLayer .buttonWidgetAnnotation.radioButton input {
  border-radius: 50%;
}

.annotationLayer .textWidgetAnnotation textarea {
  resize: none;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea)[disabled],
.annotationLayer .choiceWidgetAnnotation select[disabled],
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input[disabled] {
  background: none;
  border: 2px solid var(--input-disabled-border-color);
  cursor: not-allowed;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:hover {
  border: 2px solid var(--input-hover-border-color);
}
.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover {
  border-radius: 2px;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):focus,
.annotationLayer .choiceWidgetAnnotation select:focus {
  background: none;
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) :focus {
  background-image: none;
  background-color: transparent;
}

.annotationLayer .buttonWidgetAnnotation.checkBox :focus {
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation.radioButton :focus {
  border: 2px solid var(--input-focus-border-color);
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after,
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  background-color: CanvasText;
  content: '';
  display: block;
  position: absolute;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  height: 80%;
  left: 45%;
  width: 1px;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before {
  transform: rotate(45deg);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  transform: rotate(-45deg);
}

.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  border-radius: 50%;
  height: 50%;
  left: 30%;
  top: 20%;
  width: 50%;
}

.annotationLayer .textWidgetAnnotation input.comb {
  font-family: monospace;
  padding-left: 2px;
  padding-right: 0;
}

.annotationLayer .textWidgetAnnotation input.comb:focus {
  /*
   * Letter spacing is placed on the right side of each character. Hence, the
   * letter spacing of the last character may be placed outside the visible
   * area, causing horizontal scrolling. We avoid this by extending the width
   * when the element has focus and revert this when it loses focus.
   */
  width: 103%;
}

.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  appearance: none;
}

.annotationLayer .popupTriggerArea {
  height: 100%;
  width: 100%;
}

.annotationLayer .fileAttachmentAnnotation .popupTriggerArea {
  position: absolute;
}

.annotationLayer .popupWrapper {
  position: absolute;
  font-size: calc(9px * var(--scale-factor));
  width: 100%;
  min-width: calc(180px * var(--scale-factor));
  pointer-events: none;
}

.annotationLayer .popup {
  position: absolute;
  max-width: calc(180px * var(--scale-factor));
  background-color: rgba(255, 255, 153, 1);
  box-shadow: 0 calc(2px * var(--scale-factor)) calc(5px * var(--scale-factor))
    rgba(136, 136, 136, 1);
  border-radius: calc(2px * var(--scale-factor));
  padding: calc(6px * var(--scale-factor));
  margin-left: calc(5px * var(--scale-factor));
  cursor: pointer;
  font: message-box;
  white-space: normal;
  word-wrap: break-word;
  pointer-events: auto;
}

.annotationLayer .popup > * {
  font-size: calc(9px * var(--scale-factor));
}

.annotationLayer .popup h1 {
  display: inline-block;
}

.annotationLayer .popupDate {
  display: inline-block;
  margin-left: calc(5px * var(--scale-factor));
}

.annotationLayer .popupContent {
  border-top: 1px solid rgba(51, 51, 51, 1);
  margin-top: calc(2px * var(--scale-factor));
  padding-top: calc(2px * var(--scale-factor));
}

.annotationLayer .richText > * {
  white-space: pre-wrap;
  font-size: calc(9px * var(--scale-factor));
}

.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .freeTextAnnotation,
.annotationLayer .lineAnnotation svg line,
.annotationLayer .squareAnnotation svg rect,
.annotationLayer .circleAnnotation svg ellipse,
.annotationLayer .polylineAnnotation svg polyline,
.annotationLayer .polygonAnnotation svg polygon,
.annotationLayer .caretAnnotation,
.annotationLayer .inkAnnotation svg polyline,
.annotationLayer .stampAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}

.annotationLayer section svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.annotationLayer .annotationTextContent {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: transparent;
  user-select: none;
  pointer-events: none;
}

.annotationLayer .annotationTextContent span {
  width: 100%;
  display: inline-block;
}
/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

:root {
  --react-pdf-text-layer: 1;
  --highlight-bg-color: rgba(180, 0, 170, 1);
  --highlight-selected-bg-color: rgba(0, 100, 0, 1);
}

@media screen and (forced-colors: active) {
  :root {
    --highlight-bg-color: Highlight;
    --highlight-selected-bg-color: ButtonText;
  }
}

[data-main-rotation='90'] {
  transform: rotate(90deg) translateY(-100%);
}
[data-main-rotation='180'] {
  transform: rotate(180deg) translate(-100%, -100%);
}
[data-main-rotation='270'] {
  transform: rotate(270deg) translateX(-100%);
}

.textLayer {
  position: absolute;
  text-align: initial;
  inset: 0;
  overflow: hidden;
  line-height: 1;
  text-size-adjust: none;
  forced-color-adjust: none;
  transform-origin: 0 0;
  z-index: 2;
}

.textLayer :is(span, br) {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  margin: 0;
  transform-origin: 0 0;
}

/* Only necessary in Google Chrome, see issue 14205, and most unfortunately
 * the problem doesn't show up in "text" reference tests. */
.textLayer span.markedContent {
  top: 0;
  height: 0;
}

.textLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: var(--highlight-bg-color);
  border-radius: 4px;
}

.textLayer .highlight.appended {
  position: initial;
}

.textLayer .highlight.begin {
  border-radius: 4px 0 0 4px;
}

.textLayer .highlight.end {
  border-radius: 0 4px 4px 0;
}

.textLayer .highlight.middle {
  border-radius: 0;
}

.textLayer .highlight.selected {
  background-color: var(--highlight-selected-bg-color);
}

/* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
.textLayer br::selection {
  background: transparent;
}

.textLayer .endOfContent {
  display: block;
  position: absolute;
  inset: 100% 0 0;
  z-index: -1;
  cursor: default;
  user-select: none;
}

.textLayer.selecting .endOfContent {
  top: 0;
}

.hiddenCanvasElement {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  display: none;
}
.tavily-result-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tavily-result-header {
  background: #f5f7fa;
  font-size: var(--font-size-4);
  font-weight: 400;
  margin-bottom: 15px;
}

.tavily-result-img-area {
  width: 100%;
  flex: 6;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e3e8f0;
  background: rgb(44, 44, 44);
  border-radius: 16px;
  overflow: hidden;
}

.tavily-result-img-wrapper {
  flex: 1;
  width: 100%;
  margin: 16px 0px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.tavily-result-img {
  width: 100%;
  border: none;
  background: #fff;
}

.tavily-result-list {
  padding: 0;
  margin-top: 16px;
  flex: 4;
  list-style: none;
  overflow-y: scroll;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
}

.tavily-result-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
  border-bottom: 1px solid #e3e8f0;
  cursor: pointer;
  transition: background 0.2s;
  background: #fff;
}

.tavily-result-item:last-child {
  border-bottom: none;
}

.tavily-result-item.selected {
  background: rgba(132, 204, 22, 0.08);
  font-weight: 500;
}

.tavily-result-title,
.tavily-result-url,
.tavily-result-content {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-height: 20px;
}

.tavily-result-item.expanded .tavily-result-title,
.tavily-result-item.expanded .tavily-result-url,
.tavily-result-item.expanded .tavily-result-content {
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
  display: block;
}

.tavily-result-arrow {
  margin-left: 8px;
  cursor: pointer;
  user-select: none;
  color: #888;
  align-self: flex-start;
  transition: color 0.2s;
}

.tavily-result-arrow:hover {
  color: #0b0b0b;
}

.tavily-result-title {
  font-size: var(--font-size-6);
  font-weight: 400;
  position: relative;
  width: 100%;
  padding-right: 10px;
}
.tavily-result-title.up:after {
  position: absolute;
  right: 0px;
  top: 5px;
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #000;
}
.tavily-result-title.down:after {
  position: absolute;
  right: 0px;
  top: 5px;
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000;
}

.tavily-result-url {
  font-size: 11px;
  color: RGBA(81, 164, 229, 1);
  word-break: break-all;
}

.tavily-result-content {
  font-size: var(--font-size-6);
  color: #444;
}

.tavily-result-score {
  font-size: 11px;
  color: #29bc6e;
  text-align: left;
}.molstar-view-container {
  position: relative;
}
.molstar-view-container .loading {
  position: absolute;
  z-index: 10;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
}.compound-smiles-card {
  background: #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
}
.compound-smiles-card .compound-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: #2C2C2C;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  padding: 10px;
  color: #ffffff;
}
.compound-smiles-card .compound-header .title {
  width: 100%;
  font-size: var(--font-size-5);
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.compound-smiles-card .compound-header .desc {
  width: 100%;
  font-size: var(--font-size-6);
  line-height: 26px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.compound-smiles-card .compound-header .compound-title-row {
  width: 100%;
  display: flex;
  gap: 24px;
}
.compound-smiles-card .compound-header .compound-title-row .compound-title {
  font-size: var(--font-size-6);
  font-weight: 600;
}
.compound-smiles-card .compound-3d {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom: solid 15px rgb(44, 44, 44);
  border-radius: 15px;
}
.compound-smiles-card .compound-bottom {
  background: rgb(44, 44, 44);
  color: white;
  padding: 10px 0px 0px 10px;
}
.compound-smiles-card .compound-bottom .compound-info {
  font-size: 15px;
  display: flex;
}
.compound-smiles-card .compound-bottom .compound-info span {
  margin-right: 30px;
}
.compound-smiles-card .compound-smiles {
  padding: 0 24px 16px 24px;
  color: #444;
  font-family: "Fira Mono", monospace;
  font-size: 15px;
}
.compound-smiles-card .compound-section {
  margin: 18px 0 0 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f7fafd;
  border: 1px solid #e3e8f0;
}
.compound-smiles-card .compound-section-title {
  padding: 10px 20px;
  font-size: 16px;
}
.compound-smiles-card .compound-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #f7fafd;
}
.compound-smiles-card .compound-table td {
  padding: 7px 20px;
  border-bottom: 1px solid #e3e8f0;
  color: #333;
}
.compound-smiles-card .compound-table tr:last-child td {
  border-bottom: none;
}
.compound-smiles-card .compound-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0 0;
}
.compound-smiles-card .compound-tag {
  background: #e3e8f0;
  color: #2979ff;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 13px;
}
.compound-smiles-card .compound-desc {
  padding: 12px 20px 16px 20px;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}
.compound-smiles-info-container {
  /* Fallback code window styles */
  /* Checkmark animation */
  /* --- Component Styles --- */
}
.compound-smiles-info-container .mindflow-container {
  margin: auto;
  width: 100%;
  max-width: 900px;
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.compound-smiles-info-container .mindflow-top-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
}
.compound-smiles-info-container .mindflow-animation-container {
  width: 28px;
  height: 28px;
  margin-right: 20px;
  flex-shrink: 0;
}
.compound-smiles-info-container .mindflow-message {
  font-size: 16px;
  color: #495057;
  text-align: left;
}
.compound-smiles-info-container .mindflow-result-window {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.compound-smiles-info-container .mindflow-code-window {
  background-color: #2d333b;
  color: #cdd9e5;
  border-radius: 8px;
  font-family: "Fira Code", monospace;
  font-size: 13px;
  text-align: left;
  overflow: hidden;
}
.compound-smiles-info-container .mindflow-code-header {
  background-color: #39404a;
  padding: 10px 15px;
  color: #abb2bf;
  font-size: 12px;
}
.compound-smiles-info-container .mindflow-code-header strong {
  color: #ffffff;
  font-weight: 600;
}
.compound-smiles-info-container .mindflow-code-window pre {
  margin: 0;
  padding: 15px;
  white-space: pre-wrap;
  word-break: break-all;
}
.compound-smiles-info-container .mindflow-cursor {
  display: inline-block;
  background-color: #cdd9e5;
  width: 8px;
  animation: mindflow-blink 1s step-end infinite;
}
@keyframes mindflow-blink {
  from, to {
    background-color: transparent;
  }
  50% {
    background-color: #cdd9e5;
  }
}
.compound-smiles-info-container .checkmark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4caf50;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.compound-smiles-info-container .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4caf50;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.compound-smiles-info-container .checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4caf50;
  }
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 14px;
  background: white;
  padding: 20px;
  box-sizing: border-box;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-main-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #005f73;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-smiles-card {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-smiles-label {
  font-weight: 600;
  font-size: 14px;
  color: #495057;
  margin-bottom: 5px;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-smiles-value {
  font-family: "Fira Code", monospace;
  font-size: 13px;
  color: #212529;
  word-break: break-all;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-section-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-section-header {
  background-color: #f1f3f5;
  padding: 12px 20px;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
  color: #005f73;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-section-body {
  padding: 20px;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-subsection-title {
  font-weight: 600;
  font-size: 14px;
  color: #495057;
  margin-top: 0;
  margin-bottom: 8px;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-subsection-content {
  margin-bottom: 15px;
  line-height: 1.6;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
}
.compound-smiles-info-container .pubchem_get_general_info_by_compound_name-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #0a9396;
  font-weight: bold;
}.compound-pdb-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.compound-pdb-card .compound-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgb(44, 44, 44);
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  padding: 10px;
}
.compound-pdb-card .compound-header .title {
  width: 100%;
  font-size: var(--font-size-5);
  color: #ffffff;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-left: 10px;
}
.compound-pdb-card .compound-header .desc {
  width: 100%;
  font-size: var(--font-size-6);
  color: #352F44;
  line-height: 26px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.compound-pdb-card .compound-header .compound-title-row {
  width: 100%;
  display: flex;
  gap: 24px;
}
.compound-pdb-card .compound-header .compound-title-row .compound-title {
  font-size: var(--font-size-6);
  color: #222;
}
.compound-pdb-card .compound-header .compound-title-row .compound-info {
  color: #666;
  font-size: 15px;
  display: flex;
  gap: 18px;
}
.compound-pdb-card .compound-3d {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom: solid 15px #2C2C2C;
  border-radius: 15px;
}
.compound-pdb-card .compound-smiles {
  padding: 0 24px 16px 24px;
  color: #444;
  font-family: "Fira Mono", monospace;
  font-size: 15px;
}
.compound-pdb-card .compound-section {
  margin: 18px 0 0 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f7fafd;
  border: 1px solid #e3e8f0;
}
.compound-pdb-card .compound-section-title {
  padding: 10px 20px;
  font-size: 16px;
}
.compound-pdb-card .compound-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #f7fafd;
}
.compound-pdb-card .compound-table td {
  padding: 7px 20px;
  border-bottom: 1px solid #e3e8f0;
  color: #333;
}
.compound-pdb-card .compound-table tr:last-child td {
  border-bottom: none;
}
.compound-pdb-card .compound-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0 0;
}
.compound-pdb-card .compound-tag {
  background: #e3e8f0;
  color: #2979ff;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 13px;
}
.compound-pdb-card .compound-desc {
  padding: 12px 20px 16px 20px;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}.compound-pdb-grid-view {
  padding: 15px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  /* --- Component-Specific Styles --- */
}
.compound-pdb-grid-view .mindflow-container {
  margin: auto;
  width: 100%;
  max-width: 900px;
  background-color: #ffffff;
  padding: 20px;
  /* Reduced padding */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.compound-pdb-grid-view .mindflow-top-section {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  /* Reduced margin */
  padding-bottom: 16px;
  /* Reduced padding */
  border-bottom: 1px solid #dee2e6;
}
.compound-pdb-grid-view .mindflow-animation-container {
  width: 28px;
  height: 28px;
  margin-right: 20px;
  flex-shrink: 0;
}
.compound-pdb-grid-view .mindflow-message {
  font-size: 16px;
  color: #495057;
  text-align: left;
}
.compound-pdb-grid-view .mindflow-result-window {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.compound-pdb-grid-view .mindflow-code-window {
  background-color: #2d333b;
  color: #cdd9e5;
  border-radius: 8px;
  font-family: "Fira Code", monospace;
  font-size: 13px;
  text-align: left;
  overflow: hidden;
}
.compound-pdb-grid-view .mindflow-code-header {
  background-color: #39404a;
  padding: 10px 15px;
  color: #abb2bf;
  font-size: 12px;
  font-family: "Inter", sans-serif;
}
.compound-pdb-grid-view .mindflow-code-header strong {
  color: #ffffff;
  font-weight: 600;
}
.compound-pdb-grid-view .mindflow-code-window pre {
  margin: 0;
  padding: 15px;
  white-space: pre-wrap;
  word-break: break-all;
}
.compound-pdb-grid-view .mindflow-cursor {
  display: inline-block;
  background-color: #cdd9e5;
  width: 8px;
  animation: mindflow-blink 1s step-end infinite;
}
@keyframes mindflow-blink {
  from, to {
    background-color: transparent;
  }
  50% {
    background-color: #cdd9e5;
  }
}
.compound-pdb-grid-view .checkmark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4caf50;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.compound-pdb-grid-view .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4caf50;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.compound-pdb-grid-view .checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4caf50;
  }
}
.compound-pdb-grid-view .uniprot-report {
  font-family: "Inter", sans-serif;
  color: #343a40;
  padding: 20px;
  /* Reduced padding */
  background-color: #fff;
}
.compound-pdb-grid-view .uniprot-header {
  border-bottom: 2px solid #0d6efd;
  padding-bottom: 12px;
  /* Reduced padding */
  margin-bottom: 20px;
  /* Reduced margin */
}
.compound-pdb-grid-view .uniprot-gene-name {
  font-size: 18px;
  /* Max font size set to 18px */
  font-weight: 700;
  color: #212529;
  margin: 0;
  margin-bottom: 8px;
  /* Added margin for spacing */
}
.compound-pdb-grid-view .uniprot-synonyms,
.compound-pdb-grid-view .uniprot-pdb-display {
  font-size: 14px;
  color: #6c757d;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compound-pdb-grid-view .uniprot-label {
  font-weight: 600;
  font-size: 14px;
}
.compound-pdb-grid-view .uniprot-badge {
  display: inline-block;
  background-color: #e9ecef;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "Fira Code", monospace;
  font-size: 13px;
}
.compound-pdb-grid-view .uniprot-section {
  margin-bottom: 20px;
  /* Reduced margin */
}
.compound-pdb-grid-view .uniprot-section-title {
  font-size: 16px;
  /* Adjusted font size */
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 10px;
  /* Reduced margin */
  padding-bottom: 6px;
  border-bottom: 1px solid #dee2e6;
}
.compound-pdb-grid-view .uniprot-card {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-left: 4px solid green;
  border-radius: 8px;
  padding: 12px;
  /* Reduced padding */
}
.compound-pdb-grid-view .uniprot-card p {
  margin-top: 0;
  margin-bottom: 8px;
  /* Reduced margin */
  line-height: 1.6;
}
.compound-pdb-grid-view .uniprot-evidences {
  font-size: 12px;
  color: #6c757d;
  word-wrap: break-word;
}
.compound-pdb-grid-view .uniprot-evidences a {
  color: #0d6efd;
  text-decoration: none;
  margin-right: 8px;
}
.compound-pdb-grid-view .uniprot-evidences a:hover {
  text-decoration: underline;
}
.compound-pdb-grid-view .uniprot-reaction {
  font-family: "Fira Code", monospace;
  background-color: #e9ecef;
  padding: 10px;
  /* Reduced padding */
  border-radius: 6px;
  font-size: 13px;
  word-break: break-all;
}
.compound-pdb-grid-view .uniprot-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.compound-pdb-grid-view .uniprot-table th,
.compound-pdb-grid-view .uniprot-table td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #dee2e6;
}
.compound-pdb-grid-view .uniprot-table th {
  font-weight: 600;
  background-color: #f8f9fa;
}
.compound-pdb-grid-view .uniprot-pdb-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
}
.compound-pdb-grid-view .uniprot-no-data {
  padding: 20px;
  text-align: center;
  font-style: italic;
  color: #6c757d;
}.code-display-container {
  margin: 0px auto;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.code-display-container pre {
  margin: 0 !important;
  padding: 16px;
  overflow: auto;
  height: 100%;
}.image-group-container {
  position: relative;
  background: #2C2C2C;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.image-group-container .replay-button {
  cursor: pointer;
}
.image-group-container .image-slideshow {
  width: 100%;
  margin-top: 16px;
  flex: 1;
  align-items: center;
  justify-content: center;
  display: flex;
}
.image-group-container .image-slideshow .main-image-container {
  position: relative;
  width: 100%;
}
.image-group-container .image-slideshow .main-image-container .image-loading-overlay {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10;
}
.image-group-container .image-slideshow .main-image-container .image-loading-overlay .loading-text {
  color: #666;
  font-size: 14px;
}
.image-group-container .image-slideshow .main-image-container .main-image {
  width: 100%;
}
.image-group-container .image-slideshow .main-image-container .main-image.loaded {
  opacity: 1;
}
.image-group-container .image-slideshow .main-image-container .image-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  z-index: 5;
}
.image-group-container .image-slideshow .controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.image-group-container .image-slideshow .controls .control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
.image-group-container .image-slideshow .controls .control-btn:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.image-group-container .image-slideshow .controls .control-btn.play-pause-btn {
  width: 56px;
  height: 56px;
}
.image-group-container .image-slideshow .controls .control-btn.play-pause-btn .anticon {
  font-size: 20px;
}
.image-group-container .image-slideshow .controls .control-btn .anticon {
  font-size: 16px;
  color: #666;
}
.image-group-container .image-slideshow .thumbnail-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.image-group-container .image-slideshow .thumbnail-nav .thumbnail {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.image-group-container .image-slideshow .thumbnail-nav .thumbnail:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.image-group-container .image-slideshow .thumbnail-nav .thumbnail.active {
  border-color: #1890ff;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.image-group-container .image-slideshow .thumbnail-nav .thumbnail .thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-group-container .image-slideshow .thumbnail-nav .thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.image-group-container .image-slideshow .thumbnail-nav .thumbnail:hover::after {
  opacity: 1;
}
.image-group-container .image-slideshow .thumbnail-nav .thumbnail.active::after {
  opacity: 0;
}

@media (max-width: 768px) {
  .image-group-container .image-slideshow .main-image-container {
    height: 300px;
  }
  .image-group-container .image-slideshow .controls {
    gap: 12px;
  }
  .image-group-container .image-slideshow .controls .control-btn {
    width: 40px;
    height: 40px;
  }
  .image-group-container .image-slideshow .controls .control-btn.play-pause-btn {
    width: 48px;
    height: 48px;
  }
  .image-group-container .image-slideshow .thumbnail-nav {
    gap: 8px;
  }
  .image-group-container .image-slideshow .thumbnail-nav .thumbnail {
    width: 60px;
    height: 45px;
  }
}.image-view-container {
  position: relative;
  width: 100%;
  min-height: 300px;
}
.image-view-container .image-loading-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.image-view-container .image-loading-container .loading-text {
  color: #666;
  font-size: 14px;
}
.image-view-container .image-error-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.image-view-container .image-error-container .error-text {
  color: #ff4d4f;
  font-size: 14px;
}
.image-view-container .image-display {
  width: 100%;
}
.image-view-container .image-display.hidden {
  opacity: 0;
  visibility: hidden;
}
.image-view-container .image-display.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}
.image-view-container .image-display .main-image-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
}
.image-view-container .image-display .main-image-container .main-image {
  width: 100%;
}

@media (max-width: 768px) {
  .image-view-container .image-display .main-image-container {
    height: 300px;
  }
}.explore-view-header {
  height: 49px;
  min-height: 49px;
  border-bottom: solid 2px #E0E7EB;
  display: flex;
  font-size: var(--font-size-4);
  color: #352F44;
  text-align: left;
  align-items: center;
  padding-left: 15px;
}
.explore-view-header .title {
  flex: 1;
}
.explore-view-header .time {
  text-align: right;
  padding-right: 20px;
  line-height: 1.2;
  font-size: var(--font-size-6);
  font-weight: 500;
  width: 200px;
}
.explore-view-header .time .desc {
  color: rgba(0, 0, 0, 0.65);
  font-size: var(--font-size-7);
  font-weight: 400;
  margin-right: 10px;
}/* Sources Content */
.sources-container {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background-color: white;
  scrollbar-width: var(--scrollbar-width);
  scrollbar-color: var(--scrollbar-color);
  height: 100%;
  /* Round badges for sources */
}
.sources-container .sources-header {
  padding: 0px 16px;
  font-size: var(--font-size-5);
  color: #000000;
  line-height: 24px;
  text-align: left;
}
.sources-container .sources-count {
  background-color: #4a90e2;
  color: white;
  padding: 3px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
}
.sources-container .sources-table {
  height: calc(100vh - 165px);
  overflow-y: auto;
  /* Hide scrollbar for webkit browsers */
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  font-size: 16px;
  color: #6BB100;
  line-height: 26px;
  text-align: left;
  font-style: normal;
}
.sources-container .sources-table::-webkit-scrollbar {
  width: 6px;
}
.sources-container .sources-table::-webkit-scrollbar-track {
  background: transparent;
}
.sources-container .sources-table::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
}
.sources-container .sources-table::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}
.sources-container .reference-row {
  display: flex;
  align-items: center;
  padding: 6px 16px;
  border-bottom: 1px solid #f5f5f5;
  gap: 6px;
  min-height: 26px;
  transition: background-color 0.2s;
}
.sources-container .reference-row:hover {
  background-color: #f8f9fa;
}
.sources-container .reference-row:last-child {
  border-bottom: none;
}
.sources-container .reference-index {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #000000;
  color: white;
  font-weight: 200;
  text-align: center;
  line-height: 20px;
  flex-shrink: 0;
}
.sources-container .reference-icon {
  color: white;
  font-size: 24px;
  width: 24px;
  margin: 0 8px;
}
.sources-container .reference-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sources-container .reference-title {
  font-size: 14px;
  color: #000000;
  line-height: 26px;
  text-align: left;
  display: flex;
  align-items: center;
}
.sources-container .reference-title .title {
  flex: 1;
  margin-left: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.sources-container .reference-authors {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 26px;
  text-align: left;
  text-indent: 32px;
}
.sources-container .reference-title:hover,
.sources-container .reference-authors:hover {
  color: #6BB100;
}
.sources-container .reference-link {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a90e2;
  font-size: 8px;
  transition: all 0.2s;
}
.sources-container .reference-link:hover {
  background-color: #4a90e2;
  color: white;
}
.sources-container .round-badge {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 8px;
  font-size: 8px;
  font-weight: bold;
  margin-left: 6px;
  vertical-align: top;
}
.sources-container .round-badge.round-1 {
  background-color: #e3f2fd;
  color: #1976d2;
}
.sources-container .round-badge.round-2 {
  background-color: #f3e5f5;
  color: #7b1fa2;
}.tools .ant-upload-list-item {
  display: none !important;
}
.chatInput {
  position: relative;
  justify-content: center;
  width: 80%;
  min-width: 400px;
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 267px;
  background: rgba(254, 255, 255, 0.57);
  box-shadow: 0px 0px 1px 0px rgba(23, 26, 31, 0.07), 0px 14px 20px 0px rgba(178, 187, 163, 0.2);
  border-radius: 32px;
  border: 1px solid rgba(188, 238, 255, 0.13);
  backdrop-filter: blur(8px);
}
.chatInput .rm-files {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 10;
  color: black;
  display: flex;
  gap: 12px;
}
.chatInput .rm-files .rm-file-item {
  width: 165px;
  padding-left: 18px;
  line-height: 28px;
  box-sizing: border-box;
  background: #F6F7F9;
  border-radius: 12px;
  border: 1px solid rgba(151, 151, 151, 0.15);
}
.chatInput .rm-files span.ellipsis {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 13px;
  margin-left: 10px;
}
.chatInput .textarea-wrapper {
  width: 100%;
  padding: 40px 40px 0 40px;
  border-radius: 24px;
  background: rgba(254, 255, 255, 0);
}
.chatInput .textarea-wrapper textarea {
  background: rgba(254, 255, 255, 0);
  border: none;
  resize: none;
  font-size: var(--font-size-5);
  color: #000000;
  line-height: 35px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.chatInput .textarea-wrapper textarea:focus {
  border: none;
  box-shadow: none;
  color: black;
}
.chatInput .basic-tools {
  font-size: var(--font-size-6);
  color: #000000;
  line-height: 29px;
  text-align: left;
  border: 1px solid #f1f1f1;
  border-radius: 54px;
  height: 54px;
}

.chat-input-small {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 64px;
}
.chat-input-small input {
  border: none;
  background-color: white !important;
}
.chat-input-small button {
  margin: 0px 5px 0px 15px;
}
.chat-input-small .send {
  width: 32px;
  height: 32px;
  font-size: 35px;
  margin-right: 10px;
}
.chat-input-small .attachment {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FEFFFF;
  border-radius: 41px;
  border: 1px solid #EAEBEC;
  cursor: pointer;
  position: relative;
  stroke: #333;
}
.chat-input-small .attachment svg {
  width: 22px;
  height: 22px;
}
.chat-input-small .can-send svg rect {
  fill-opacity: 1;
}
.chat-input-small .circle-btn {
  width: 32px;
  height: 32px;
  background: #FEFFFF;
  border-radius: 41px;
  border: 1px solid #EAEBEC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
  font-size: 16px;
}
.chat-input-small .circle-btn .mode-text {
  display: none;
}
.chat-input-small .circle-btn.dropdown-mode:hover {
  width: 245px;
  transition: width 0.2s ease-out;
}
.chat-input-small .circle-btn.dropdown-mode:hover button {
  border: none;
  height: 20px;
}
.chat-input-small .circle-btn.dropdown-mode:hover .down-icon {
  display: none;
}
.chat-input-small .circle-btn.dropdown-mode:hover .mode-icon {
  display: none;
}
.chat-input-small .circle-btn.dropdown-mode:hover .mode-text {
  display: block;
}
.chat-input-small .circle-btn svg {
  stroke: #333;
}

.chat-input-small-tip {
  flex: 1;
  text-align: left;
  margin-left: 20px;
  color: rgba(147, 146, 146, 0.5);
}

.send-wrapper {
  flex: 1;
  text-align: right;
  align-items: center;
  display: flex;
  justify-content: right;
}
.send-wrapper .ant-space-item {
  font-size: var(--font-size-6);
}
.send-wrapper .mode-dropdown {
  width: 240px;
  height: 54px;
  background: #FEFFFF;
  border-radius: 41px;
  border: 1px solid #EAEBEC;
  margin-right: 10px;
  text-align: left;
}
.send-wrapper .mode-dropdown .ant-space-gap-col-small {
  text-align: left;
}
.send-wrapper .tools {
  display: flex;
  align-items: right;
  width: 100%;
  padding: 0px 40px;
  margin-bottom: 20px;
}
.send-wrapper .tools .attachment {
  width: 54px;
  height: 54px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FEFFFF;
  border-radius: 41px;
  border: 1px solid #EAEBEC;
  cursor: pointer;
  position: relative;
}
.send-wrapper .tools .attachment svg {
  width: 34px;
  height: 34px;
}
.send-wrapper .tools .tools {
  height: 54px;
  width: 100px;
}

.chat-input-dp-item {
  color: #000000;
  line-height: 29px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-shadow: 0px 3px 5px rgba(225, 225, 225, 0.5);
  text-align: left;
  padding-left: 14px;
  position: relative;
}
.chat-input-dp-item.disabled {
  cursor: auto !important;
  color: gray;
}

.chat-input-dp-item:hover {
  color: #6BB100;
}

.chat-input-dp-item:hover::before {
  content: "●";
  position: absolute;
  left: -10px;
  font-size: 16px;
  top: 3px;
}

.chat-input-dp-desc {
  padding-left: 14px;
  font-weight: 300;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 20px;
  text-shadow: 0px 3px 5px rgba(225, 225, 225, 0.5);
  text-align: left;
  font-style: normal;
  text-transform: none;
}.right-default-container {
  background-image: url(../img/rightDefault.svg);
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 500px;
  margin: auto;
}.section-progress-indicator {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.section-progress-dots {
  display: inline-flex;
  gap: 2px;
}

.section-progress-dots .progress-dot {
  width: 3px;
  height: 3px;
  background-color: #4a90e2;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.section-progress-dots .progress-dot:nth-child(2) {
  animation-delay: 0.3s;
}

.section-progress-dots .progress-dot:nth-child(3) {
  animation-delay: 0.6s;
}

.section-completion-indicator {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  flex: 0 0 auto;
}

.section-completion-indicator.completed {
  color: #4CAF50;
}

.section-completion-indicator.interrupted {
  color: #ff9800;
}

.progress-dot {
  width: 4px;
  height: 4px;
  background-color: #4a90e2;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}.login-container {
  display: flex;
  height: 100%;
  flex-direction: column;
  font-size: 16px;
  background: url("../img/loginBg.png") center/cover no-repeat;
}
.login-container .ant-input {
  background: white;
}
.login-container .eye-icon {
  cursor: pointer;
  position: absolute;
  right: 55px;
  top: 290px;
  z-index: 1;
}

.login-bg {
  width: 100vw;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.login-center-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card-inner {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 36px 32px 36px;
  display: flex;
  width: 648px;
  min-height: 580px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.login-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  color: #222;
  font-size: 2rem;
}

.login-subtitle {
  font-size: 1.1rem;
  color: #444;
  text-align: center;
  margin-bottom: 18px;
}

.login-alert-box {
  padding: 14px 18px 8px 18px;
  width: 100%;
  font-size: 16px;
  color: #6BB100;
  line-height: 28px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.login-alert-title {
  color: #6bb100;
  font-weight: 600;
  margin-bottom: 4px;
}

.login-alert-desc {
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.login-quick-btn {
  background: #eaf6ee !important;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 0;
  width: 548px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #84CC16;
  font-size: 16px;
  color: #6BB100;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.login-submit-btn {
  width: 548px;
  height: 56px;
  background: #84CC16;
  border-radius: 12px;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.login-quick-btn:hover,
.login-submit-btn:hover {
  background-color: #259a46 !important;
  color: white !important;
}

.login-request-btn {
  font-weight: 600;
  margin-top: 18px;
  border: none;
  font-size: 21px;
  color: #6BB100;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.login-row-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}

.login-remember-checkbox {
  color: rgba(0, 0, 0, 0.45);
}

.login-forgot-link {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.login-forgot-link:hover {
  color: #234c2e;
}

.login-card-inner .ant-form-item-label > label {
  color: #234c2e;
  font-weight: 500;
  position: relative;
}

.login-card-inner .ant-input,
.login-card-inner .ant-input-affix-wrapper,
.login-card-inner input[type=text],
.login-card-inner input[type=password] {
  background: #fff !important;
  box-shadow: none !important;
}

.ant-input-outlined:hover,
.ant-input-outlined:focus-within {
  border-color: #6BB100 !important;
}

.ant-checkbox-label,
.ant-form-item-required {
  font-size: 16px !important;
}

.ant-input:-internal-autofill-selected {
  transition: background-color 5000s ease-in-out 0s !important;
  -webkit-text-fill-color: #0f0e0e !important;
}.logo {
  display: flex;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
}
.logo img {
  width: 48px;
  height: 48px;
  margin-top: 40px;
}
.logo.mobile img {
  width: 28px;
  height: 28px;
  margin-top: auto;
}
.logo span {
  font-size: 16px;
  color: black;
  margin-top: -3px;
  line-height: 50px;
  margin-left: 10px;
}

.logo-large {
  margin-top: 30px;
  margin-left: 20px;
  cursor: pointer;
}
.logo-large img {
  width: 100px;
}

.logo-middle {
  padding-left: 10px;
  cursor: pointer;
}
.logo-middle img {
  width: 45px;
}

.logo-home {
  margin-left: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.logo-home img {
  width: 100px;
  margin-right: 10px;
}.without-login-header {
  width: 100%;
  padding: 0;
  min-height: 64px;
  padding-left: 20px;
}

.header-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
}

.header-left {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.header-logo-square {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-right: 12px;
}

.header-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #26382b;
  letter-spacing: 0.5px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-menu-item {
  color: #26382b;
  font-size: 1.08rem;
  font-weight: 400;
  text-decoration: none;
  margin-right: 0;
  transition: color 0.2s;
  position: relative;
  padding: 0 4px;
  cursor: pointer;
}

.header-menu-item:hover {
  color: #7bbf7b;
}

.header-link-arrow {
  font-size: 0.95em;
  margin-left: 2px;
}

.header-try-btn {
  background: linear-gradient(90deg, #7bbf7b 0%, #a3d9a5 100%) !important;
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  padding: 0 22px;
  height: 40px;
  margin-left: 24px;
  box-shadow: 0 2px 8px 0 rgba(123, 191, 123, 0.1);
  font-size: 1.08rem;
  transition: background 0.2s;
}

.header-try-btn:hover {
  background: linear-gradient(90deg, #6aad6a 0%, #8fd18f 100%) !important;
  color: #fff !important;
}

.header-language-switcher {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #26382b;
  margin-left: 8px;
  z-index: 1;
}
.header-language-switcher span {
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-weight: 400;
}
.header-language-switcher span:hover {
  color: #7bbf7b;
  background-color: rgba(123, 191, 123, 0.1);
}
.header-language-switcher span.active {
  color: #7bbf7b;
  font-weight: 600;
  background-color: rgba(123, 191, 123, 0.15);
}

.without-login-header-mobile {
  width: 100%;
  padding: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.without-login-header-mobile .header-left-mobile {
  flex: 1;
}
.without-login-header-mobile .header-try-btn {
  background: linear-gradient(90deg, #7bbf7b 0%, #a3d9a5 100%) !important;
  color: #fff !important;
  font-weight: 300;
  font-size: 12px;
  border: none;
  border-radius: 20px;
  line-height: 28px;
  height: 28px;
  box-shadow: 0 2px 8px 0 rgba(123, 191, 123, 0.1);
  transition: background 0.2s;
  width: 110px;
}
.without-login-header-mobile .header-menu {
  margin-top: 30px;
}

.header-content-mobile {
  width: 100vw;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 10px;
}

.header-left-mobile {
  display: flex;
  align-items: center;
}

.header-logo-square-mobile {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  margin-right: 8px;
}

.header-title-mobile {
  font-size: 1.1rem;
  font-weight: 700;
  color: #26382b;
  letter-spacing: 0.2px;
}

.header-try-btn-mobile {
  background: linear-gradient(90deg, #7bbf7b 0%, #a3d9a5 100%) !important;
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  padding: 0 14px;
  height: 32px;
  font-size: 0.98rem;
  box-shadow: 0 1px 4px 0 rgba(123, 191, 123, 0.1);
  margin-left: 0;
}

.header-try-btn-mobile:hover {
  background: linear-gradient(90deg, #6aad6a 0%, #8fd18f 100%) !important;
  color: #fff !important;
}.main-container {
  background: url(../img/chatInput/main_bg.png) 100% no-repeat;
  background-size: 100% 100%;
  display: flex;
  height: 100%;
}
.main-container .main {
  flex: 1;
}

.sidebar {
  background-color: #E0E0E0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 50px;
  overflow: hidden;
}

.qr-code-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.qr-code-container .qr-code-popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px;
  z-index: 1000;
}
.qr-code-container .qr-code-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: white;
}
.qr-code-container .qr-code-popup img {
  display: block;
  border-radius: 4px;
}

.feedback-float-chat-container {
  position: fixed;
  bottom: 80px;
  right: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.history-bar-container {
  /* 基础布局与外观 */
  height: 100%;
  width: var(--bar-width);
  transition: width 0.4s ease-out;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #000;
  background: #FBFAFA;
  box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1);
}
.history-bar-container .user-info {
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
}
.history-bar-container .history-bar-line {
  width: calc(var(--bar-width) - 40px);
  height: 1px;
  border: 1px solid #EAEBEC;
  margin: 40px 0 0 20px;
}
.history-bar-container .btn-box {
  line-height: 64px;
  background: rgba(132, 204, 22, 0.1);
  border-radius: 8px;
  margin: 0px 20px 0 20px;
  padding-left: 30px;
  color: #6BB100;
  cursor: pointer;
  display: flex;
}
.history-bar-container .btn-box .text {
  margin-left: 20px;
}
.history-bar-container .icon {
  width: 40px;
  height: 40px;
  margin-top: 10px;
  color: #000;
  display: block;
  cursor: pointer;
}
.history-bar-container .history-bar-content {
  height: calc(100vh - 308px);
  min-height: 0;
  min-width: 0;
  flex-shrink: 0;
  overflow-y: auto;
  scrollbar-width: var(--scrollbar-width);
  scrollbar-color: var(--scrollbar-color);
  padding: 10px;
  font-size: var(--font-size-6);
}
.history-bar-container .history-bar-content li {
  cursor: pointer;
  height: 30px;
  width: calc(var(--bar-width) - 25px);
  margin-bottom: 8px;
}
.history-bar-container .history-bar-content li:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  color: #000;
  line-height: 24px;
  font-weight: 800;
}
.history-bar-container .history-bar-content .selected {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  color: #000;
  line-height: 24px;
  text-align: left;
}
.history-bar-container .history-bar-content .selected:hover .del {
  color: #1c1b1b;
  display: block;
}
.history-bar-container .history-bar-content .group {
  margin-top: 19px;
  height: 24px;
  font-size: var(--font-size-6);
  color: rgba(0, 0, 0, 0.45);
  line-height: 24px;
  text-align: left;
  padding-left: 10px;
}
.history-bar-container .history-bar-content ul li {
  align-items: center;
  display: flex;
  min-width: 0;
  color: #000;
  text-align: left;
  padding-left: 10px;
}
.history-bar-container .history-bar-content ul li a {
  color: #000;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.history-bar-container .history-bar-content ul li .del {
  color: #3a2f2f;
  margin-left: -5px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px;
}
.history-bar-container .history-bar-content ul li:hover .del {
  color: #393737;
  display: block;
}
.history-bar-container .empty {
  text-align: center;
}
.history-bar-container .history-bar-setting-box {
  display: flex;
  flex-direction: column;
  font-size: 28px;
}
.history-bar-container .history-bar-setting-box .bottom-wrapper {
  display: flex;
  font-size: 28px;
  width: 100%;
  height: 69px;
  align-items: center;
  padding: 0 20px;
}
.history-bar-container .history-bar-setting-box .bottom-wrapper .setting {
  flex: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.history-bar-container .history-bar-setting-box .bottom-wrapper .toggle {
  flex: 1;
  text-align: right;
  cursor: pointer;
}
.history-bar-container .history-bar-setting-box .empty-box {
  height: 21px;
  background: linear-gradient(180deg, rgba(238, 238, 238, 0) 0%, #D8D8D8 100%);
  opacity: 0.3;
  width: 100%;
}
.history-bar-container .history-more {
  margin-top: 24px;
  text-align: center;
  display: none;
  cursor: pointer;
}
.history-bar-container .history-more .history-more-btn {
  width: 90%;
  height: 48px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 24px;
}
.history-bar-container .anticon:hover path {
  fill: var(--bg-primary);
}

.history-bar-min-container {
  display: flex;
  flex-direction: column;
  width: var(--bar-width);
  transition: width 0.4s ease-out;
  background: #FBFAFA;
  box-shadow: inset -1px 0 0 0 #DCE0E6;
  align-items: center;
}
.history-bar-min-container .icon {
  width: 40px;
  height: 40px;
  color: #000;
  display: block;
  font-size: 32px;
  cursor: pointer;
  margin-top: 20px;
}
.history-bar-min-container .icon g {
  fill: #3a3939;
}
.history-bar-min-container .history-content {
  flex: 1;
}
.history-bar-min-container .history-bar-setting-box {
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 32px;
  color: #000;
}
.history-bar-min-container .history-bar-setting-box .setting {
  flex: 1;
  cursor: pointer;
}
.history-bar-min-container .history-bar-setting-box .toggle {
  flex: 1;
  text-align: right;
  cursor: pointer;
}
.history-bar-min-container .anticon:hover path {
  fill: var(--bg-primary);
}.tool-modal-conatiner {
  width: 1000px;
  height: 660px;
}
.tool-modal-conatiner .ant-modal-header {
  background: none !important;
}
.tool-modal-conatiner .tool-modal .ant-modal-content {
  padding: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.tool-modal-conatiner .ant-modal-body {
  height: 100%;
}
.tool-modal-conatiner .ant-modal-content {
  background-image: url("./toolSetBg-RMbwvOb8.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.tool-modal-conatiner .tool-horizontal-line {
  height: 1px;
  margin-top: 24px;
  width: 700px;
  height: 0.5px;
  border: 1px solid #B4BBBF;
  opacity: 0.24;
}
.tool-modal-conatiner .tool-line {
  width: 2px;
  height: 600px;
  margin-top: -50px;
  background: linear-gradient(to bottom, transparent 0%, #e8e8e8 50%, transparent 100%);
}
.tool-modal-conatiner .tool-icon {
  font-size: 24px;
  margin-right: 12px;
}

.ant-modal .ant-modal-title {
  font-size: var(--font-size-4);
  font-weight: 500;
}

.tool-container {
  display: flex;
}

.tool-modal-content {
  padding: 10px 32px 0 32px;
  min-width: 400px;
  max-height: 700px;
  flex: 1;
  overflow: auto;
  font-family: "Inter", "PingFang SC", Arial, sans-serif;
  color: #222;
}

.tool-section-group {
  margin-bottom: 24px;
}

.tool-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tool-section-title {
  color: #1E293B;
  font-size: var(--font-size-5);
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  margin-bottom: 16px;
}

.tool-clear,
.tool-create {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 4px 16px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}

.tool-clear:hover,
.tool-create:hover {
  background: #444;
}

.tool-badge,
.tool-item-badge {
  display: inline-block;
  background: #f2f3f5;
  color: #888;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 2px 8px;
  margin-right: 8px;
  min-width: 28px;
  text-align: center;
}

.tool-row {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.tool-item {
  cursor: pointer;
  border-radius: 10px;
  padding: 5px 5px;
  color: #222;
  display: flex;
  align-items: center;
  width: 232px;
  position: relative;
  transition: background 0.2s, color 0.2s;
  font-size: var(--font-size-6);
  color: #000000;
  line-height: 29px;
  text-align: left;
  line-height: 1.5;
  background: #FEFFFF;
  border-radius: 8px;
  border: 1px solid #EAEBEC;
}

.tool-item-selected {
  background: #FEFFFF;
  border-radius: 8px;
  border: 1px solid #6BB100;
  color: #6BB100 !important;
}
.tool-item-selected .tool-icon g {
  fill: #6BB100 !important;
}

.tool-item-disabled {
  background: #f2f3f5;
  color: #bbb;
  cursor: not-allowed;
  opacity: 0.7;
}

.tool-detail-bar {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: 12px;
  padding: 5px 5px 5px 23px;
  gap: 32px;
  width: 346px;
  height: 535px;
  position: relative;
}

.tool-detail-top {
  flex: 1;
}

.tool-detail-bottom {
  flex: 1;
}

.tool-detail-title {
  font-size: var(--font-size-5);
  color: #1E293B;
  line-height: 22px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  font-weight: 500;
}

.tool-detail-desc {
  font-size: var(--font-size-6);
  color: #1E293B;
  line-height: 22px;
  margin-top: 12px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.tool-detail-included {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tool-detail-included .title {
  font-size: 18px;
  color: #1E293B;
  line-height: 22px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.tool-detail-included .count {
  font-size: var(--font-size-6);
  color: #1E293B;
  line-height: 22px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.tool-detail-count {
  color: #888;
  font-size: 13px;
}

.tool-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-tag {
  background: #e6f0ff;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: var(--font-size-6);
}

.tool-confirm {
  position: absolute;
  right: 32px;
  bottom: 24px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 28px;
  font-size: var(--font-size-5);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.tool-confirm:hover {
  background: #1677ff;
}

.tool-detail-submit {
  height: 50px;
  text-align: right;
}
.tool-detail-submit button {
  width: 100%;
  height: 36px;
  background: #84CC16;
  border-radius: 26px;
  font-size: var(--font-size-5);
  color: #FFFFFF;
  line-height: 26px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}.feedback-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 32px 24px 24px 24px;
  width: 500px;
  max-width: 90vw;
  position: relative;
}
.feedback-container .request-request-btn {
  background: #84CC16;
}
.feedback-container .request-request-btn:hover {
  background-color: #259a46 !important;
  color: white !important;
}

.feedback-form {
  margin-top: 12px;
}

.feedback-img-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.feedback-img-item {
  width: 64px;
  height: 64px;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}

.feedback-img-item img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.feedback-float-btn {
  position: fixed;
  right: 90px;
  bottom: 60px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 38px;
  background: #F2F9E7;
  box-shadow: 0px 3px 23px 0px rgba(204, 204, 204, 0.5);
  border-radius: 19px;
  border: 1px solid #84CC16;
  font-family: AlibabaPuHuiTi_2_55_Regular;
  color: #84CC16;
  line-height: 17px;
  text-shadow: 0px 3px 23px rgba(204, 204, 204, 0.5);
  text-align: left;
  font-style: normal;
}
.feedback-float-btn .anticon {
  font-size: 18px;
}
.feedback-float-btn .txt {
  margin-left: 8px;
  font-size: 12px;
}

.feedback-float-btn-hover,
.feedback-float-btn:hover {
  transform: translateX(-2px) !important;
}

.feedback-modal-mask {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  padding: 0;
  position: relative;
  min-width: 400px;
  max-width: 90vw;
  min-height: 320px;
  animation: feedback-modal-in 0.2s;
}

.feedback-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  z-index: 1;
}

@keyframes feedback-modal-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}.admin-layout {
  height: 100vh;
}
.admin-layout .admin-header {
  background: #001529;
  padding: 0 24px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.admin-layout .admin-sider {
  background: #fff;
  border-right: 1px solid #f0f0f0;
}
.admin-layout .admin-sider .ant-menu {
  border-right: none;
}
.admin-layout .admin-content-layout {
  background: #f5f5f5;
}
.admin-layout .admin-content-layout .admin-content {
  margin: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  min-height: calc(100vh - 120px);
  overflow-y: auto;
}.chat-input-root {
  position: relative;
  flex: 1;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/chatInput/left_top_bg.png), radial-gradient(50% 70% at 98% 60%, rgba(150, 234, 99, 0.3) 0%, rgba(255, 255, 255, 0) 30%);
  background-position: -30% top, 70% 50%;
  background-repeat: no-repeat, no-repeat;
}
.chat-input-root .explore-more {
  width: 80%;
}
.chat-input-root .explore-more .explore-more-btn {
  margin-top: 34px;
  height: 38px;
  border-radius: 27px;
  backdrop-filter: blur(5px);
  text-align: left;
  font-size: 14px;
  color: #000000;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.chat-input-root .title {
  margin-bottom: 10px;
  padding-left: 10px;
  width: 100%;
  text-align: center;
  justify-content: center;
  height: 100px;
  color: #000000;
}
.chat-input-root .title .first {
  font-size: var(--font-size-1);
  line-height: 35px;
  font-style: normal;
  text-transform: none;
  display: block;
}
.chat-input-root .title .second {
  font-size: var(--font-size-2);
  color: #000000;
  line-height: 35px;
  font-style: normal;
  text-transform: none;
  display: block;
}
.chat-input-root svg {
  stroke: #333;
}
.chat-input-root .tools {
  display: flex;
  align-items: right;
  width: 100%;
  padding: 0px 40px;
  margin-bottom: 20px;
}
.chat-input-root .tools .attachment {
  width: 54px;
  height: 54px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FEFFFF;
  border-radius: 41px;
  border: 1px solid #EAEBEC;
  cursor: pointer;
  position: relative;
}
.chat-input-root .tools .attachment svg {
  width: 34px;
  height: 34px;
}
.chat-input-root .tools .tools {
  height: 54px;
  width: 100px;
}
.chat-input-root .submitBtn {
  cursor: pointer;
  border: none;
  background: rgb(212, 209, 209);
  border-radius: 26.67px;
  width: 54px;
  height: 54px;
  margin-bottom: 7px;
}
.chat-input-root .submitBtn svg {
  margin-top: 3px;
  stroke: none;
}
.chat-input-root .history {
  margin-top: 10px;
  text-align: center;
}
.chat-input-root .history .tag {
  cursor: pointer;
  line-height: 38px;
  font-size: var(--font-size-6);
  margin-top: 20px;
  border-radius: 27px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: 13px;
  background: rgba(254, 255, 255, 0.52);
  box-shadow: 0px 9px 15px 0px rgba(178, 187, 163, 0.2);
  border-radius: 27px;
  border: 1px solid #E2E8F0;
}
.chat-input-root .history .tag span {
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: bottom;
}
.chat-input-root .history .tag .right_icon {
  margin-left: 10px;
  line-height: 38px;
}
.chat-input-root .chatInput_tools_icon svg {
  fill: none !important;
  stroke: rgb(20, 19, 19);
  stroke-width: 1px;
}.more-container {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 12px;
}
.more-container .output-container {
  /* max-width: 1200px; */
  margin: 0 auto 20px auto;
  background: var(--card-background);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 2px var(--shadow-color);
}
.more-container .output-container h2 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--header-color);
  font-size: 18px;
}
.more-container #input-area {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--button-border-color);
  border-radius: 6px;
  padding: 10px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  resize: vertical;
  background-color: #fff;
}
.more-container .more-main-container {
  /* max-width: 1200px; */
  margin: auto;
}
.more-container .more-main-container h1 {
  color: var(--header-color);
  text-align: center;
  margin-bottom: 32px;
  font-size: 24px;
}
.more-container .banner-container {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 2px var(--shadow-color);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.more-container .banner-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  background: linear-gradient(90deg, #10B981, #027A48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.more-container .banner-content p {
  margin: 0;
  line-height: 1.5;
  color: var(--text-color);
  font-size: 14px;
  padding-bottom: 5px;
}
.more-container .banner-video video {
  width: 100%;
  border-radius: 8px;
  display: block;
}
@media (max-width: 768px) {
  .more-container .banner-container {
    grid-template-columns: 1fr;
  }
}
.more-container .category-container {
  margin-bottom: 32px;
}
.more-container .category-container h2 {
  color: var(--header-color);
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}
.more-container .templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.more-container .template-card {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 2px var(--shadow-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.more-container .template-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.more-container .template-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--header-color);
  font-size: 18px;
  font-weight: 600;
}
.more-container .template-card .prompt-text {
  flex-grow: 1;
  line-height: 1.5;
  color: var(--text-color);
}
.more-container .placeholder {
  background-color: var(--placeholder-bg);
  color: var(--placeholder-text);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.more-container .add-btn {
  background-color: var(--button-bg);
  color: var(--button-text-color);
  border: 1px solid var(--button-border-color);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 12px;
  transition: background-color 0.2s;
}
.more-container .add-btn:hover {
  background-color: var(--button-hover-bg);
}.request-access-bg {
  height: 100%;
  background: url("../img/loginBg.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  background-size: cover;
  overflow: scroll;
}
.request-access-bg .ant-input {
  height: 56px;
}
.request-access-bg .ant-space-compact {
  width: 100%;
}
.request-access-bg .request-access-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.request-access-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
  padding: 16px 22px 10px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 648px;
  height: 820px;
}

.request-access-circle {
  width: 56px;
  height: 56px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
}

.request-access-title-1 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  color: #234c2e;
  margin-top: 10px;
}

.request-access-title-2 {
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.request-access-alert {
  font-size: 14px;
  color: #6BB100;
  line-height: 20px;
  text-align: justify;
  font-style: normal;
  border: none;
  background: none;
}

.request-access-form {
  width: 100%;
  margin-top: 10px;
}

.request-access-btns {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.request-access-submit-btn {
  border: none;
  margin-top: 10px;
  background: #84CC16;
  width: 100%;
  height: 56px;
  border-radius: 12px;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.request-access-back-btn {
  background: none;
  border: none;
  font-size: 21px;
  color: #6BB100;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-top: 30px;
  width: 100%;
  cursor: pointer;
}

.request-access-card .ant-form-item-label > label {
  color: #234c2e;
  font-weight: 500;
}

.request-access-bg-mobile {
  min-height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.request-access-main-mobile {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.request-access-card-mobile {
  background: #fff;
  padding: 0px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 420px;
  margin: 0px;
}

.request-access-title-1-mobile {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  color: #234c2e;
  margin-top: 2px;
}

.request-access-title-2-mobile {
  font-size: 1rem;
  color: #666666;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 8px;
}

.request-access-alert-mobile {
  font-size: 0.95rem;
  color: #6BB100;
  line-height: 1.4;
  text-align: justify;
  border: none;
  background: none;
  margin-bottom: 8px;
}

.request-access-form-mobile {
  width: 100%;
  margin-top: 6px;
}

.request-access-form-mobile .ant-input,
.request-access-form-mobile .ant-input-affix-wrapper {
  height: 42px;
  font-size: 1rem;
}

.request-access-form-mobile .ant-form-item-label > label {
  color: #234c2e;
  font-weight: 500;
  font-size: 0.98rem;
}

.request-access-btns-mobile {
  display: flex;
  justify-content: flex-start;
  margin-top: 12px;
}

.request-access-submit-btn-mobile {
  border: none;
  margin-top: 6px;
  background: #84CC16;
  width: 100%;
  height: 42px;
  border-radius: 8px;
  font-size: 1rem;
  color: #FFFFFF;
  text-align: center;
}

.request-access-back-btn-mobile {
  background: none;
  border: none;
  font-size: 1rem;
  color: #6BB100;
  line-height: 1.5;
  text-align: center;
  margin-top: 18px;
  width: 100%;
  cursor: pointer;
}

.tavily-result-img-wrapper.align-top {
  align-items: flex-start;
}.user-admin-container {
  padding: 32px;
  background: #fff;
  height: 100vh;
  overflow: auto;
}

.user-admin-container h2 {
  margin-bottom: 24px;
}

.ant-table {
  background: #fafafa;
}.feedback-view-container {
  padding: 32px;
  background: #fff;
  height: 100vh;
  overflow: auto;
}

.feedback-view-container h2 {
  margin-bottom: 24px;
}

.ant-table {
  background: #fafafa;
}

.ant-table-tbody > tr > td {
  vertical-align: top;
}.home-container {
  background-color: var(--bg-color);
  color: #2d3748;
}
.home-container .home-header {
  position: fixed;
  z-index: 2;
  width: 100%;
}
.home-container .home-header .header-try-btn {
  background: linear-gradient(90deg, #00d1a1 0%, #00d1a1 100%) !important;
  border-radius: 5px;
}
.home-container .home-header .header-try-btn button {
  margin-right: 0px;
}
.home-container #canvas-container {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: -30%;
  width: 130vw;
  height: 100vh;
  min-height: 500px;
  z-index: 1;
}
.home-container .page-container {
  position: absolute;
  z-index: 2000;
  left: 55%;
  top: 30%;
  display: flex;
  flex-direction: column;
  background: transparent;
}
.home-container .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.home-container .lang-switch .active {
  color: var(--primary-green);
  font-weight: bold;
}
.home-container .cta-button {
  background-color: var(--primary-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.home-container .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 209, 161, 0.4);
  background-color: #29e0b9;
  color: #fff;
}
.home-container .hero {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: left;
  padding: 0 5% 0 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
  background: transparent;
}
.home-container .hero-text {
  max-width: 500px;
  margin-right: 10%;
}
.home-container .hero-text h1 {
  font-size: 3.75rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.home-container .hero-text p {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.8;
}
.home-container .features-container {
  position: fixed;
  bottom: 0px;
  z-index: 3;
  width: 100%;
  max-width: 1600px;
  font-weight: 500;
  left: 50%;
  transform: translate(-50%, 0px);
}
.home-container .features {
  padding: 40px 50px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  text-align: center;
  display: flex;
  justify-content: space-around;
  margin: auto 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.home-container .feature p {
  font-size: 1.1rem;
  margin: 0;
}
.home-container .video-container {
  border-radius: 12px;
  color: #00d1a1;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
}
.home-container .video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.home-container .page-container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.home-container-mobile {
  background-color: #f7f8fa;
  height: 100%;
  width: 100%;
}
.home-container-mobile .header-content-mobile {
  padding: 0px;
  display: flex;
}
.home-container-mobile .page-container {
  top: 30%;
  left: 40%;
}
.home-container-mobile .hero-text {
  margin-right: 10px;
  text-align: right;
}
.home-container-mobile header {
  padding: 5px 15px;
  justify-content: flex-start;
}
.home-container-mobile .header-menu-item,
.home-container-mobile .header-language-switcher {
  font-size: 12px;
}
.home-container-mobile nav {
  position: absolute;
  top: 15px;
  right: 15px;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}
.home-container-mobile nav #cta-button {
  order: -1;
}
.home-container-mobile .cta-button {
  padding: 8px 12px;
  font-size: 0.9em;
}
.home-container-mobile #canvas-container {
  left: 0;
  width: 175vw;
  left: -90%;
}
.home-container-mobile .hero {
  justify-content: center;
  align-items: center;
  padding: 15px 0px;
}
.home-container-mobile .hero-text h1 {
  font-size: 2rem;
}
.home-container-mobile .hero-text p {
  font-size: 0.9rem;
}
.home-container-mobile .video-container {
  width: 100%;
  margin-top: 0.5rem;
}
.home-container-mobile .features {
  flex-direction: column;
  gap: 2px;
  padding: 5px 20px;
}
.home-container-mobile .feature p {
  font-size: 0.6rem;
  font-weight: normal;
}.admin-search-container {
  display: flex;
  height: 100vh;
}
.admin-search-container .left {
  width: 400px;
  padding: 20px;
  border-right: 1px solid #e0e0e0;
  overflow-y: auto;
}
.admin-search-container .left h3 {
  margin-bottom: 20px;
  color: #333;
}
.admin-search-container .left .error {
  color: #d32f2f;
  padding: 10px;
  background-color: #ffebee;
  border-radius: 4px;
  margin-bottom: 10px;
}
.admin-search-container .left .sessions-list .session-item {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: #fafafa;
  transition: background-color 0.2s;
  cursor: pointer;
}
.admin-search-container .left .sessions-list .session-item:hover {
  background-color: #f0f0f0;
}
.admin-search-container .left .sessions-list .session-item.selected {
  background-color: #e3f2fd;
  border-color: #2196f3;
}
.admin-search-container .left .sessions-list .session-item .session-query {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  word-break: break-word;
}
.admin-search-container .left .sessions-list .session-item .session-date {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
.admin-search-container .left .sessions-list .session-item .session-id {
  font-size: 11px;
  color: #999;
  font-family: monospace;
}
.admin-search-container .left .pagination-container {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.admin-search-container .left .pagination-container .pagination-info {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}
.admin-search-container .left .pagination-container .pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.admin-search-container .left .pagination-container .pagination-controls .pagination-btn {
  padding: 8px 16px;
  border: 1px solid #d0d0d0;
  background-color: #fff;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.admin-search-container .left .pagination-container .pagination-controls .pagination-btn:hover:not(:disabled) {
  background-color: #f5f5f5;
  border-color: #b0b0b0;
}
.admin-search-container .left .pagination-container .pagination-controls .pagination-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
  background-color: #f9f9f9;
}
.admin-search-container .left .pagination-container .pagination-controls .page-numbers {
  display: flex;
  gap: 5px;
}
.admin-search-container .left .pagination-container .pagination-controls .page-numbers .page-btn {
  padding: 8px 12px;
  border: 1px solid #d0d0d0;
  background-color: #fff;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  min-width: 40px;
  transition: all 0.2s;
}
.admin-search-container .left .pagination-container .pagination-controls .page-numbers .page-btn:hover {
  background-color: #f5f5f5;
  border-color: #b0b0b0;
}
.admin-search-container .left .pagination-container .pagination-controls .page-numbers .page-btn.active {
  background-color: #2196f3;
  border-color: #2196f3;
  color: #fff;
}
.admin-search-container .left .pagination-container .pagination-controls .page-numbers .page-btn.active:hover {
  background-color: #1976d2;
  border-color: #1976d2;
}
.admin-search-container > div:last-child {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.admin-search-container > div:last-child .report-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.admin-search-container > div:last-child .report-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: #666;
  font-size: 16px;
}
.admin-search-container > div:last-child .report-error {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: #d32f2f;
  font-size: 16px;
  background-color: #ffebee;
  border-radius: 8px;
  border: 1px solid #f44336;
}
.admin-search-container > div:last-child .no-report {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: #999;
  font-size: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 2px dashed #ddd;
}
.admin-search-container > div:last-child iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
}