textarea,
input[type="text"],
input[type="file"],
input[type="file"]:focus {
  background-color: var(--color-input-bg);
  color: var(--color-input);
  border: 1px solid var(--color-input-br);
  border-radius: 0.375rem;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  line-height: 1;
}

input::placeholder {
  color: var(--color-input-placeholder);
}

input[type="file"]::file-selector-button {
  background-color: var(--color-input-file-selector-button-bg);
  color:var(--color-input-file-selector-button);
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--color-input-file-selector-button-bg-hv);
  color: var(--color-input-file-selector-button);
}

select, option {
  background-color: var(--color-input-bg);
  color: var(--color-input);
  border: 1px solid var(--color-input-br);
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-family: "Roboto", system-ui;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  line-height: 1.5;
}

label {
  margin-right: 5px;
}

.search {
  width: 100%;
  min-width: 84px;
}

.sort {
  width: 100%;
  min-width: 135px;
}

.page-item .page-link {
  color: var(--color-input) !important;
  background-color: var(--color-input-bg) !important;
  border-color: var(--color-input-br) !important;
}

.page-item .page-link:hover {
  color: var(--color-input-hv) !important;
  background-color: var(--color-input-bg-hv) !important;
  border-color: var(--color-input-br-hv) !important;
}

.page-item.active .page-link {
  color: var(--color-input-active) !important;
  background-color: var(--color-input-active-bg) !important;
  border-color: var(--color-input-active-br) !important;
}

.page-item.disabled .page-link {
  color: var(--color-input-disabled) !important;
  background-color: var(--color-input-disabled-bg) !important;
  border-color: var(--color-input-disabled-br) !important;
}

.is-vectorized {
  background-color: #198754;
  border: 1px solid #888;
}

.is-vectorized:hover {
  background-color: transparent;
  color: #198754;
  border: 1px solid #198754;
}

.not-vectorized {
  background-color: #ffc107;
  color: #888;
  border: 1px solid #888;
}

.not-vectorized:hover {
  background-color: transparent;
  color: #d09e14;
  border: 1px solid #d09e14;
}

#document-vectorize-form {
    display: flex;
    align-items: center;
}

#document-vectorize-delete-form {
    display: flex;
    align-items: center;
}

.list-option {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: .25rem;
  justify-content: space-between;
}

.list-option > div {
  margin-bottom: 5px;
}

.bulk-option {
  display: flex;
  align-items: center;
  height: 100%;
  flex-flow: wrap;
}

.list-footer-option {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-areas:
    "totalPage pageSize"
    "pagination pagination";
  width: 100%;
  margin-top: 5px;
}

.totalPage {
  grid-area: totalPage;
  width: 100%;
  height: 100%;
}

.pagination_ {
  grid-area: pagination;
  width: 100%;
  height: 100%;
  margin-top: 5px;
}

.pageSize {
  grid-area: pageSize;
  display: flex;
  flex-flow: wrap;
  justify-content: end;
  align-items: center;
  height: 100%;
}

.welcome-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  width: 100%;
}

.welcome-line {
  display:flex;
  flex-direction: column;
  margin-top: -50px;
  margin-bottom: 10px;
}

.welcome-txt {
  position: relative;
  top: 60px;
  font-size:1.5rem;
}

.big-friendly-button {
  padding: 15px;
  margin: 5px;
  font-size: 2em;
}

.dark-light {
  background-color: #ffff;
  padding: 20px;
  border-radius: 10px;
}

.faq-section {
  background-color: var(--color-faq-section-bg);
  display:block;
  position: relative;
  left:0;
  right:0;
  padding-top: 30px;
  padding-bottom: 20px;
  margin-top: 20px;
}

.faq-question {
  display: block;
  background-color: var(--color-faq-section-bg);
  width: 100%;
  padding: 20px;
  border-top: 1px solid #ccc;
  text-decoration: none;
  font-size: 20px;
}

.failing-bot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

a {
  color: var(--color-link);
}

a:hover {
  color: var(--color-link-hv);
}

.external::after {
  display: inline-block;
  background-image: var(--img-external-link-small);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  content: "";
  width: 14px;
  height: 16px;
}

.external:hover::after {
  display: inline-block;
  background-image: var(--img-external-link-small-hv);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  content: "";
  width: 14px;
  height: 16px;
}

body {
    background-color: var(--color-bg);
    font-family: 'Roboto', 'serif';
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color);
    height:100%;
}

aside {
  position: absolute;
  left:0;
  top: 100px;
  bottom: 0;
  width: 150px;
  background-color: var(--color-aside-bg);
  color: var(--color-aside);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-aside-br);
}

aside > a {
  text-align: center;
  text-decoration: none;
  padding: 10px;
  color: var(--color-aside);
}

aside > a:hover {
  color: var(--color-aside-hv);
  background-color: var(--color-aside-bg-hv);
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-center {
  padding: 0 20px 20px;
}

.inline-flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
}

.inline-flex ul > li {
  margin-bottom: 20px;
}

.inline {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}

.heading {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.cookie-option-container .inline .right {
  display: flex;
  align-items: center;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  top: 0;
  left: 6px;
  width: 48px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-slider-bg);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 2px;
  background-color: var(--color-slider);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-input:checked + .slider {
  background-color: var(--color-slider-bg-on);
}

.slider-input:focus + .slider {
  box-shadow: 0 0 1px var(--color-slider-bg);
}

.slider-input:checked + .slider:before {
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.center-flex {
  justify-content:center;
  align-items: center;
}

.full-line {
  width: 100%;
}

.half-line {
  width: 50%;
}

.big-third-line {
  width: 67%;
}

.third-line {
  width: 33%;
}

.pl-2 {
  padding-left: 20px;
}

.pr-2 {
  padding-right: 20px;
}

.pr-05 {
  padding-right: 5px;
}

.pl-05 {
  padding-left: 5px;
}

.br-1-light-grey {
  border-right: 1px var(--color-br-light-grey) solid ;
}

.bl-1-light-grey-collapse {
  border-left: 1px var(--color-br-light-grey) solid ;
  margin-left: -1px;
}

.italic {
  font-style: italic;
}

.bg-light-grey {
  background-color: var(--color-light-grey);
}

.raw-list {
  list-style-type: none;
}

.alpha-list {
  list-style-type: lower-alpha;
}

.roman-list {
  list-style-type: upper-roman;
}

.subtxt-list > li {
  margin-bottom: 15px;
}

.con-container {
  padding: 3rem;
  width: 100%;
}

.btn {
  background-color: var(--color-btn-bg);
  border-color: var(--color-btn-br);
  color: var(--color-btn);
}

.btn:hover {
  background-color: var(--color-btn-bg-hv);
  border-color: var(--color-btn-br-hv);
  color: var(--color-btn-hv);
}


/*header*/
header .left > .dropdown-content {
  display: flex !important;
  height: 50px;
  width: 100%;
  align-items: center;
  font-size: 20px;
  flex-flow: row wrap;
}

header .left > .dropdown-content > a {
  text-decoration: none;
  color: var(--color-header);
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
}

header > .left > .dropdown-button {
  display: none;
}

header .left > .dropdown-content > a.external::after {
  background-image: var(--img-external-link-header);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 16px;
  height: 20px;
}

header .left > .dropdown-content > a.external:hover::after {
  background-image: var(--img-external-link-header-hv);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 16px;
  height: 20px;
}

.dropdown > .dropdown-content > a.external::after {
  background-image: var(--img-external-link-header);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
}

.dropdown > .dropdown-content > a.external:hover::after {
  background-image: var(--img-external-link-header-hv);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
}

header .left > .dropdown-content > a:hover, header .right > label:hover {
  background-color: var(--color-header-bg-hv);
}

#greeting {
  margin-right: 10px;
}

.dropdown-content > .dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
}

.dropdown > .dropdown-content {
    position: absolute;
    background-color: var(--color-header-submenue-bg);
    width: 150px;
    z-index: 10000;
    flex-direction: column;
}

.dropdown > .dropdown-content > a {
  height: 35px;
  width: 100%;
  border-bottom: 1px solid var(--color-header-submenue-br);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-header-submenue);
  font-size: 16px;
}

.dropdown > .dropdown-content > a:hover {
  background-color: var(--color-header-bg-hv);
  color: var(--color-header-hv);
}

.home-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
}

header .right {
  position: absolute;
  top: 0;
  right:0;
  display: flex;
  height: 50px;
  align-items: center;
}

header .right > label {
  width: 100%;
  height: 100%;
  min-width: 110px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

header .right > a {
  text-decoration: none;
  color: var(--color-header);
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  font-size: 20px;
}

header .right > a:hover {
  background-color: var(--color-header-bg-hv);
}

header {
  width: 100%;
  height: 100px;
  background-color: var(--color-header-bg);
  color: var(--color-header);
  display: inline-block;
  border-bottom: 1px solid var(--color-header-br);
}

.section-short {
  left: 150px;
}

section {
  position: absolute;
  display: grid;
  top: 100px;
  bottom: 0;
  right: 0;
  left:0;
  height: calc(100% - 100px);
  margin: 0;
  overflow: auto;
  background-color: var(--color-bg);
}

footer {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  justify-content: center;
  padding: 10px;
  color: var(--color-link);
  position: relative;
}

footer a {
  padding-left: 5px;
  padding-right: 5px;
}

.cookie-container {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  top: 0;
  left:0;
  overflow: hidden;
}

.cookie-preference {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 550px;
  max-height: 330px;
  border-radius: 30px;
  border: 1px solid var(--color-cookie-con-br);
  background-color: var(--color-cookie-con-bg);
}

.cookie-textbox {
  display: block;
  font-size: 14px;
}

.cookie-head {
  width: calc(100% - 20px);
  height: 34px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 10px 10px 0;
}

.cookie-body {
  overflow-y: auto;
  padding: 10px;
}

.cookie-head > h4 {
  margin: 0;
}

.cookie-options {
  display:flex;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.cookie-option-spec {
  width: 100%;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.cookie-options > label {
  margin-left: 10px;
  margin-right: 10px;
}

.cookie-options > label > input {
  margin-left: 5px;
  margin-right: 5px;
}

.cookie-option-left {
  width: 100%;
}

.cookie-option-right {
  display:flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.cookie-option-container {
  background-color: var(--color-cookie-opt-bg);
  font-size: 12px;
  padding: 10px;
  margin-top: 10px;
  color: var(--color-cookie-opt);
}

.btn-cookie {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
}

.btn-cookie-small {
  width: 100%;
  max-width: 150px;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 5px;
}

.cookie-footer {
  position: relative;
  bottom: 0;
  display: flex;
  justify-content: center;
  font-size: 12px;
  margin: 0 10px 10px;
  color: var(--color-link);
}

.cookie-footer a {
  padding-left: 5px;
  padding-right: 5px;
}

.tooltip_ {
  position: relative;
  display: inline-flex;
}

.dropdown-content .tooltip_ .tooltip-tiptext {
  top: 3px;
  left: 50%;
}

.dropdown-content .tooltip_ .tooltip-tiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent var(--color-header-bg-hv) transparent transparent;
}

.tooltip_ .tooltip-tiptext {
  visibility: hidden;
  background-color: var(--color-header-bg-hv);
  color: var(--color-aside);
  opacity: 0;
  transition: opacity 2s;
  position: absolute;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  left: 105%;
  z-index: 100000;
  font-size: 12px;
}

.tooltip_ .tooltip-tiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent var(--color-header-bg-hv) transparent transparent;
  z-index: 100000;
}

.tooltip_:hover .tooltip-tiptext {
  visibility: visible;
  opacity: 1;
}

#popup {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  top: 0;
  left:0;
  overflow: hidden;
}

.request {
  position: absolute;
  top: 40%;
  left: calc( 50% - 175px);
  right: calc( 50% - 175px);
  display: flex;
  flex-direction: column;
  max-width: 350px;
  max-height: 330px;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--color-popup-br);
  background-color:var(--color-popup-bg);
  color: var(--color-popup);
}

.request > form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.request > div > button,
.request > form > div > button {
  margin-left: 10px;
  margin-right: 10px;
}

.request > form > input[type="text"] {
  margin: 0 10px 10px;
  background-color: var(--color-input-bg);
  color: var(--color-input);
  border: 1px solid var(--color-input-br);
}

.request > form > input[type="text"]::placeholder {
  color: var(--color-input-placeholder);
}

#chat-list-option {
  display: inline-flex;
  margin-top: 10px;
  margin-bottom: 10px;
  justify-content: right;
  align-items: center;
  width: 100%;
}

#chat-list-option > select {
  width: 100%;
  max-width: 200px;
  background-color: var(--color-input-bg);
  color: var(--color-input);
  border: 1px solid var(--color-input-br);
}

.edit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background-color: var(--color-btn-edit-bg);
  color: var(--color-btn-edit);
  height: 25px;
  width: 25px;
  border: 1px solid var(--color-btn-edit-br);
  border-radius: 15px;
  margin-left: 5px;
}

.edit-btn:hover {
  background-color: var(--color-btn-edit-bg-hv);
  color: var(--color-btn-edit-hv);
  border: 1px solid var(--color-btn-edit-br-hv);
}

.del-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background-color: var(--color-btn-del-bg);
  color: var(--color-btn-del);
  height: 25px;
  width: 25px;
  border: 1px solid var(--color-btn-del-br);
  border-radius: 15px;
  margin-left: 5px;
}

.del-btn:hover {
  background-color: var(--color-btn-del-bg-hv);
  color: var(--color-btn-del-hv);
  border: 1px solid var(--color-btn-del-br-hv);
}

.sort-direction-btn {
  width: 64px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  cursor: default;
}

/*dropdown*/
.hidden{
  display: none
}

.dropdown-button {
  display: inline-flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  border: none;
  background: transparent;
  color: var(--color-header);
  font-size: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.dropdown-button.active {
  background-color: var(--color-header-submenue-bg);
  border-bottom: 1px solid var(--color-header-submenue-br);
}

.dropdown-button:hover {
  background-color: var(--color-header-bg-hv);
  color: var(--color-header-hv);
}

.dropdown-header {
  cursor: pointer;
  margin: 5px;
  height: auto;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
}

.dropdown-button-arrow::after {
  margin-left: 3px;
  background-image: var(--img-dropdown-arrow-down);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  content: "";
  display: inline-flex;
  width: 20px;
  height: 16px;
}

.active .dropdown-button-arrow::after {
  margin-left: 3px;
  background-image: var(--img-dropdown-arrow-up);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  content: "";
  display: inline-flex;
  width: 20px;
  height: 16px;
}

.dropdown-header:hover {
  color: var(--color-cookie-spec-table-ddown-hv);
}

.hidden + .dropdown-header + .dropdown-content {
  display: none;
}

.hidden:checked + .dropdown-header + .dropdown-content {
  display: block;
}

.dropdown-content table {
  table-layout: fixed;
  background-color: var(--color-cookie-spec-table-bg);
  color: var(--color-cookie-spec-table);
  width: 100%;
}

.dropdown-content td {
  border: 1px solid var(--color-cookie-spec-table-br);
  text-wrap: wrap;
  padding-left: 5px;
}

.raw-list {
  list-style-type: none;
}

.alpha-list {
  list-style-type: lower-alpha;
}

.roman-list {
  list-style-type: upper-roman;
}

.subtxt-list > li {
  margin-bottom: 15px;
}

#chatbot {
  background-color: var(--color-chatbox-bg);
  border: 1px solid var(--color-chatbox-br);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  height: calc(100vh - 162px);
}

.con-container:has(#chat) {
  padding: 0;
}

#chat {
  height: calc(100vh - 144px);
}

.conversation {
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 0;
  height: calc(100vh - 285px);
}

#return-chat-archive {
  display: none;
}

.chat-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 65px;
  padding-top: 10px;
  padding-bottom: 8px;
  margin-bottom: -3px;
  background-color: var(--color-chatbox-header-bg);
  border-radius: 15px 15px 0 0;
}

.list-group-item {
  background-color: var(--color-chat-list-item-bg);
  border-color: var(--color-chat-list-item-br);
  color: var(--color-chat-list-item);
  flex-flow: wrap;
}

.list-group-item:hover {
  background-color: var(--color-chat-list-item-bg-hv);
  color: var(--color-chat-list-item-hv);
}

.list-group-option {
  display: inline-flex;
  align-items: center;
  padding-left: 5px;
  margin-left: auto;
}

/*scrollbar*/
/* Width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/*loading dots*/
.add-loading-dots:after {
  content: " .";
  animation: dots 1s steps(5, end) infinite;
}

@keyframes dots {
  0%, 20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: var(--color-dots);
    text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: .25em 0 0 var(--color-dots), .5em 0 0 rgba(0, 0, 0, 0);
  }
  80%, 100% {
    text-shadow: .25em 0 0 var(--color-dots), .5em 0 0 var(--color-dots);
  }
}

/*notification*/
.notification-container {
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.section-short:has(.notification-container) > .notification-container {
  left: 150px;
  width: calc(100% - 150px);
}

.notification {
  display: grid;
  grid-template-areas: "notification close";
  grid-template-columns: auto 20px;
  margin-bottom: 0;
}

.fade-out {
  animation: fade-out 10s;
  transition: visibility 10s;
  visibility: hidden;
}

@starting-style {
  .fade-out {
    visibility: visible;
  }
}

.hidden-notification {
    display: none !important;
}

.notification-container > label {
  z-index: 1001;
  cursor: pointer;
  display:block;
  position: relative;
  bottom: 41px;
  left: calc(100% - 33px);
}

.notification-message {
  grid-area: notification;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification-close {
  grid-area: close;
  cursor: pointer;
}

@keyframes fade-out {
  0%{
    opacity: 1;
  }
  50%{
    visibility: visible;
    opacity: 1;
  }
	100%{
    visibility: hidden;
    opacity:0
  }
}

header .left > a {
  height: 50px;
}

header .right {
  top: 50px;
}

.inline-flex:not(:has(.big-third-line)), .inline-flex:not(:has(.third-line))  {
  flex-direction: column;
}

.list-group-item > .inline-flex {
  flex-direction: row;
}

header .left > a {
  padding-left: 20px;
  padding-right: 20px;
}

header .right > label {
  padding-left: 20px;
  padding-right: 20px;
  width: 110px;
}

.section-short > footer {
  display: none;
}

.logo-subheader {
  display: none;
}

.assistant-message {
  background-color: var(--color-assistant-message-bg);
  color: var(--color-assistant-message);
  margin-right: auto;
}

.user-message {
  background-color: var(--color-user-message-bg);
  color: var(--color-user-message);
  margin-left: auto;
}

.chatbot-text-system {
  width: calc(100% - 50px);
  font-size: 0.9em;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#input-form {
  align-items: center;
  border-top: 1px solid var(--color-chatbox-br);
}

#input-field {
  flex: 1;
  height: 60px;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 14px;
  transition: border-color 0.3s;
  background: var(--color-message-bg);
  color: var(--color-message);
  border: none;
}

#input-field:focus {
  border-color: var(--color-message);
  outline: none;
}
