
#chatpilot-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0057ff;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1000;
}

#chatpilot-panel {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  max-height: 400px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  display: none;
  flex-direction: column;
  font-family: sans-serif;
  z-index: 1000;
}

#chatpilot-panel.open {
  display: flex;
}

.chat-header {
  font-weight: bold;
  margin-bottom: 10px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  font-size: 14px;
  margin-bottom: 8px;
}

#chat-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.message {
  margin-bottom: 6px;
}
