#cobi-chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-family: sans-serif;
  overflow: hidden;
  z-index: 9999;
}

#cobi-chatbot-header {
  background: #0078d7;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

#cobi-chatbot-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

#cobi-chatbot-body {
  padding: 10px;
  font-size: 14px;
}

#cobi-chatbot input[type="text"] {
  width: 100%;
  padding: 8px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#cobi-chat-log {
  margin-top: 10px;
  max-height: 100px;
  overflow-y: auto;
}

#cobi-chat-log p {
  margin: 5px 0;
}

#cobi-chat-log .user {
  text-align: right;
  color: #0078d7;
}

#cobi-chat-log .cobi {
  text-align: left;
  color: #333;
}

#cobi-chatbot-body p {
  color: #333; /* of kies bijvoorbeeld #000 of #0078d7 */
}
