.hab-chatbox {
  max-width: 420px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  font-family: Arial, sans-serif;
}

.hab-chatbox__header {
  background: linear-gradient(135deg, #5b21b6, #2563eb);
  color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hab-chatbox__messages {
  height: 360px;
  overflow-y: auto;
  padding: 14px;
  background: #f8fafc;
}

.hab-msg {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 14px;
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 14px;
  white-space: pre-wrap;
}

.hab-msg--bot {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.hab-msg--user {
  background: #dbeafe;
  margin-left: auto;
}

.hab-chatbox__form {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid #e5e7eb;
}

.hab-chatbox__form input {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
}

.hab-chatbox__form button {
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  background: #111827;
  color: #fff;
  cursor: pointer;
}
