.elementor-1015 .elementor-element.elementor-element-0f80b14{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}body.elementor-page-1015:not(.elementor-motion-effects-element-type-background), body.elementor-page-1015 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for text-editor, class: .elementor-element-4317dea */.adna-chatbot {
  max-width: 600px;
  margin: 40px auto;
  background: #fff8f2;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  color: #4b2e2e;
}

.chat-bubble {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.chat-bubble .avatar {
  font-size: 24px;
  margin-right: 10px;
}

.chat-bubble .message {
  background: #fdf2e9;
  padding: 12px 18px;
  border-radius: 16px;
  max-width: 85%;
  line-height: 1.5;
  font-size: 15px;
  border: 1px solid #e2c5ac;
}

.chat-bubble.user .message {
  background: #d2b48c;
  color: #fff;
  border: none;
  margin-left: auto;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.button-group button {
  background: #a36d45;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 14px;
}

.button-group button:hover {
  background: #8b5e3c;
}

a {
  color: #007acc;
  font-weight: bold;
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */