.chat-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2665BF;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.8);
  transition: background 0.3s;
}
.chat-button:hover {
  background-color: #3C73BF;
}
#chat-close {
  position: absolute;
  top: 4px;
  right: 4px;
  border-radius: 50%;
  background: #FFF;
  width: 24px;
  height: 24px;
  font-size: 16px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  text-decoration: none;
}
.chat-block {
  display: none;
  width: 100%;
  max-width: 350px;
  height: clamp(200px, calc(80vh - 80px), 500px);
  background-color: #ffffff;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  flex-direction: column;
}
.chat-block.active {
  display: flex;
}
.chat-block .chat-main {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.chat-block .chat-main #chat_messages {
  flex: 1;
  padding: 30px 10px 10px;
  overflow-y: auto;
  background-color: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-block .chat-main #chat_messages .my-message {
  align-self: flex-end;
  background-color: #0b4d75;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 1rem;
}
.chat-block .chat-main #chat_messages .response {
  align-self: flex-start;
  background-color: #eaeaea;
  color: black;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 1rem;
}
.chat-block .chat-main #chat_messages .response h1 {
  font-size: 1.6rem;
}
.chat-block .chat-main #chat_messages .response h2 {
  font-size: 1.5rem;
}
.chat-block .chat-main #chat_messages .response h3 {
  font-size: 1.4rem;
}
.chat-block .chat-main #chat_messages .response h4 {
  font-size: 1.3rem;
}
.chat-block .chat-main #chat_messages .response h5 {
  font-size: 1.2rem;
}
.chat-block .chat-main #chat_messages .response h6 {
  font-size: 1.1rem;
}
.chat-block .chat-main #chat_messages .response p {
  font-size: 1rem;
}
.chat-block .chat-main #chat_messages .response table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}
.chat-block .chat-main #chat_messages .response th,
.chat-block .chat-main #chat_messages .response td {
  border: 1px solid #ccc;
  padding: 0.5em;
  text-align: left;
}
.chat-block .chat-main #chat_messages .response th {
  background-color: #eee;
}
.chat-block #chat_form {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-top: 1px solid #ccc;
  background-color: #fff;
}
.chat-block #chat_form textarea {
  resize: none;
  height: 60px;
  padding: 8px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.chat-block #chat_form input[type="submit"] {
  margin-top: 8px;
  padding: 10px;
  background-color: #1cabd9;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.chat-block #chat_form input[type="submit"]:hover {
  background-color: #1B88A9;
}
#chat_loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1111;
  border: none;
}
#chat_loading.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
#chat_loading .loader-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#chat_loading .loader-center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#chat_loading .loader-center img {
  width: 48px;
  height: 48px;
}
/*# sourceMappingURL=chat.css.map */