#ebo-chatbot-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: 'Segoe UI', sans-serif;
}

#ebo-chatbot-button img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
}

#ebo-chat-window {
  width: 300px;
  height: 400px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 80px;
  right: 0;
}

#ebo-chat-window.hidden {
  display: none;
}

#ebo-chat-header {
  background: #005eff;
  color: white;
  padding: 12px;
  font-weight: bold;
  text-align: center;
}

#ebo-chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 16px;
  max-width: 80%;
  clear: both;
}

.message.user {
  background: #dcf8c6;
  align-self: flex-end;
}

.message.bot {
  background: #f1f1f1;
  align-self: flex-start;
}

#ebo-chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}

#ebo-chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

#ebo-chat-input button {
  background: #005eff;
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
}
