#simple-chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0074e4;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

#chatbox-wrapper {
  position: fixed;
  display: none;
  bottom: 90px;
  right: 20px;
  width: 400px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 10px;
  z-index: 1000;
}

#chat-log {
  height: 200px;
  overflow-y: auto;
  margin-bottom: 10px;
  margin-top: 10px;
}

.chat-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.chat-input-wrapper img.menu {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.chat-message {
  margin-bottom: 10px;
}

.chat-welcome{
  border-bottom: 1px solid #eeeeee;
}

.chat-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 5px;
  float: left;
}

.chat-timestamp {
  font-size: 10px;
  color: #888;
  float: right;
}
/* .chat-input-wrapper input[type="text"] {
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
  height: 40px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  padding-left: 10px;
} */
 .chat-input-wrapper input[type="text"] {
  flex: 1;
  height: 40px;
  font-size: 14px;
  border-radius: 4px;
  padding-left: 10px;
  box-sizing: border-box;
  border: none;
}

#chat-query:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.chat-input-wrapper button {
  position: absolute;
  right: 5px;
  top: 92%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  border: none;
  background-color: #0074e4;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.chat-input-wrapper button:hover {
  background-color: #005bbd;
}

.typing-indicator {
  font-style: italic;
  color: gray;
  margin-top: 5px;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.chat-log-entry {
  margin-bottom: 8px;
}
.chat-timestamp {
  font-size: 0.75rem;
  color: #999;
  margin-left: 5px;
}
.chat-clear-button {
  margin-top: 8px;
  /* background-color: #e53935; */
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}
.chat-clear-button:hover {
  background-color: #c62828;
}
div#chat-menu {
    border-top: 1px solid #eeeeee;
}
ul.chat-menu-list{
  text-align: left!important;
}
ul.chat-menu-list li.chat-menu-item {
  display: block!important;
}

ul.chat-menu-list li.chat-menu-item  a {
  color: var(--black)!important;
  border-right: none!important;
}