#chatpilot-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0057ff;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1000;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
  transition: all 0.3s ease;
}

#chatpilot-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
}

#chatpilot-panel {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  max-height: 500px;
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 0;
  display: none;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.chat-header {
  background: #0057ff;
  color: white;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.assistant-name {
  font-size: 16px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  max-height: 300px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-input-container {
  padding: 16px 20px;
  border-top: 1px solid #e1e5e9;
  display: flex;
  gap: 8px;
}

#chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

#chat-input:focus {
  border-color: #0057ff;
}

#send-button {
  background: #0057ff;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

#send-button:hover {
  background: #0046cc;
}

.message {
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f8f9fa;
}

.message strong {
  color: #0057ff;
  margin-right: 8px;
} 