.elementor-37644 .elementor-element.elementor-element-5c3713c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-bd05ab3 */#chatbot {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  background: #fff;
  display: flex;
      font-family: "Noto Sans";
font-size: 12px;
background: #f7f7f7;
  

  flex-direction: column;
  height: 500px;
  /*border: 1px solid #ddd;*/
  position: relative;
}

#chatbot a 
{
    color:#0E796C;
}

#chatbot input 
{
    font-size:12px;
}

#chatbot input:focus
{
    outline:none;
}

.chat-header {
  background: #fff;
  padding: 10px 20px;

color:black;

/*border-bottom: 1px solid #eee;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px 12px 0 0;
}

.chat-header .chat-close {
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
  color:#9E9E9E;
  padding:0px;
}

#chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f7f7f7;
  display:flex;
  flex-direction: column;
  gap:10px;
}

.message {
  max-width: 80%;
  margin: 8px 0;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
}

.message.user {
  background: #d9e9e4;
  margin-left: auto;
  border-bottom-right-radius: 2px;
}

.message.assistant {
  background: #fff;
  border: 1px solid #ddd;
  border-bottom-left-radius: 2px;
}

.suggestions {
  padding: 10px;
  border-top: 1px solid #eee;
}

.suggestions span {
  font-size: 12px;
  color: #333;
  display: block;
  margin-bottom: 6px;
}

.suggestion-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.suggestion {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
}

.chat-input-area {
  display: flex;
margin:0px 10px 20px 10px;
background: white;
border-radius: 12px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
padding:5px 10px;
}

#chat-input {
  flex: 1;
  border: none;
  border-radius: 20px;
  /*padding: 8px 12px;*/
}

#send-btn {
  margin-left: 6px;
  border: none;
  background: #0E796C;
  color: white;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
  padding:2px 1px 2px 4px;
}

/* Common chat bubble styles */
.user-message,
.bot-message {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
  margin: 0px;
  clear: both;
  display: inline-block;
}

/* User messages → right side */
.user-message {
  background: #BDDDD4;
  margin-left: auto;   /* pushes bubble to right */
  margin-right: 0;
  border-bottom-right-radius: 4px;
  text-align: right;    /* keep text inside left-aligned */
}

/* Bot messages → left side */
.bot-message {
  background: #fff;
  border: 1px solid #E0E0E0;
  margin-right: auto;  /* pushes bubble to left */
  margin-left: 0px;
  border-bottom-left-radius: 4px;
    max-width: 75%;

}




.bot-wrapper {
  display: flex;
  align-items: flex-start;
  margin: 8px 0;
}

.bot-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  flex-shrink: 0;
}



.user-wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 8px 0;
}



/* Floating chatbot toggle button */
#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0E796C;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: rgba(0,0,0,0.2) 0px 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

#chatbot-toggle img {
  width: 40px;
  height: 40px;
}

/* Chatbot floating panel */
#chatbot {
  position: fixed;
  bottom: 80px;
  right: 20px;
  max-width: 400px;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0,0,0,0.2) 0px 8px 24px;
  z-index: 1000;
}

/* External input (outside chatbot) */
#external-input-area {
  display: flex;
  margin: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 5px 10px;
  max-width: 400px;
}

#external-input {
  flex: 1;
  border: none;
  font-size: 14px;
}

#external-input:focus {
  outline: none;
}

#external-send {
  margin-left: 6px;
  border: none;
  background: #0E796C;
  color: white;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
  padding: 2px 1px 2px 4px;
}/* End custom CSS */