 #ai-chat-bot-whole {
  font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100vh;
  overflow: hidden;
}


#ai-chat-bot-widget-button {
  position: fixed;
  top: 20px;
  right: 10px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}

#ai-chat-bot-widget-button img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  transition: width 0.3s ease;
}

@media (min-width: 768px) {
  #ai-chat-bot-widget-button img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
  }
}

@media (min-width: 1024px) {
  #ai-chat-bot-widget-button img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
  }
}

.language-select {
  position: relative;
  width: 96px;
  font-family: sans-serif;
  font-size: 14px;
  user-select: none;
  cursor: pointer;
}

.language-select .selected,
.language-select .option {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  background: #1CB4D9;
  border: 1px solid #ccc;
}

.language-select .selected {
  border-radius: 4px;
}

.language-select .option {
  border-top: none;
}

.language-select .option img,
.language-select .selected img {
  width: 18px;
  height: auto;
  margin-right: 8px;
}

.language-select .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #1CB4D9;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 1000;
}

.language-select .options.show {
  display: block;
}

.language-select .option:hover {
  background-color: #f0f0f0;
}

#ai-chat-widget-container {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}

 #ai-chat-widget-header-long-logo img {
    width: 80px;
    height: auto;
  }

@media (min-width: 768px) {
  #ai-chat-widget-header-long-logo img {
    width: 112px;
    height: auto;
  }
}

#ai-chat-widget-header {
  background: #1CB4D9;
  color: white;
  padding-left: 5px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

#ai-chat-widget-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

#ai-chat-widget-body p {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  word-wrap: break-word;
}

#ai-chat-widget-body-a {
  margin-bottom: 20px;
}



#ai-chat-widget-footer {
  position: relative;
  padding: 12px;
  display: flex;
  align-items: flex-end;
}

#ai-chat-widget-input {
  resize: none;
  flex: 1;
  padding: 10px 50px 10px 10px;
  border: 1px solid #1CB4D9;
  border-radius: 12px;
  outline: none;
  max-height: 120px;
  min-height: 40px;
  overflow-y: auto;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4em;
  box-sizing: border-box;
}

#ai-chat-widget-send {
  position: absolute;
  bottom: 24px;
  right: 12px;
  border: none;
  cursor: pointer;
  z-index: 1;
}


#ai-chat-widget-send img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: scale(2.0);
  transition: width 0.3s ease;
}

@media (min-width: 768px) {
  #ai-chat-widget-send {
      right: 18px;
  }
}

#ai-chat-bot-chat-reset {
  border: none;
  background-color: #1CB4D9;
}

#ai-chat-bot-chat-close {
  border: none;
  background-color: #1CB4D9;
}

.reload {
  font-size: 20px;
  font-weight: 700;
  font-family: Lucida Sans Unicode;
}