#eai-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  font-family: Arial, sans-serif;
}

#eai-toggle {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: #111;
  color: #fff;
  cursor: pointer;
}

#eai-panel {
  width: 340px;
  height: 460px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  color: #111;
}

#eai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
  background: #f7f7f7;
  color: #111;
}

#eai-new-chat {
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}

#eai-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  font-size: 14px;
  color: #111 !important;
}

.eai-message {
  margin-bottom: 10px;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
}

.eai-message a {
  color: #005fcc;
  text-decoration: underline;
}

.eai-message-user {
  color: #111;
}

.eai-message-assistant {
  color: #111;
}

.eai-typing {
  opacity: .7;
  font-style: italic;
}

#eai-form {
  display: flex;
  border-top: 1px solid #ddd;
}

#eai-input {
  flex: 1;
  border: 0;
  padding: 12px;
  color: #111 !important;
  background: #fff;
}

#eai-input:disabled {
  opacity: .6;
}

#eai-form button {
  border: 0;
  padding: 0 14px;
  background: #111;
  color: #fff;
  cursor: pointer;
}

#eai-form button:disabled {
  opacity: .6;
  cursor: default;
}
