#olhi-chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#olhi-chatbot-button {
  background: #0073aa;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

#olhi-chatbot-window {
  display: none;
  width: 300px;
  height: 400px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 50px;
  right: 0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#olhi-chatbot-header {
  background: #0073aa;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#olhi-chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

#olhi-chatbot-input {
  width: calc(100% - 20px);
  padding: 5px;
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#olhi-chatbot-send {
  background: #0073aa;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  margin: 10px;
}

#olhi-chatbot-close {
  background: transparent;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
