/* Simple Fallback Widget Style - For Testing */
.chat-widget-button {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 56px !important;
  height: 56px !important;
  background: #0969da !important;
  border-radius: 28px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(9, 105, 218, 0.35) !important;
  z-index: 1000 !important;
  border: none !important;
}

.chat-widget-container {
  position: fixed !important;
  bottom: 90px !important;
  right: 24px !important;
  width: 400px !important;
  height: 600px !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
  display: none !important;
  flex-direction: column !important;
  overflow: hidden !important;
  z-index: 1000 !important;
}

.chat-header {
  background: #0969da !important;
  color: white !important;
  padding: 16px 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-weight: 600 !important;
}

.chat-close-button {
  background: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  color: white !important;
  font-size: 20px !important;
  cursor: pointer !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 16px !important;
}

.chat-messages {
  flex: 1 !important;
  padding: 20px !important;
  overflow-y: auto !important;
  background: #f6f8fa !important;
}

.chat-input-container {
  display: flex !important;
  flex-direction: column !important;
  padding: 16px 20px 20px !important;
  background: #ffffff !important;
  border-top: 1px solid #d0d7de !important;
  gap: 12px !important;
}

.copilot-editor {
  min-height: 80px !important;
  border: 1px solid #d0d7de !important;
  border-radius: 12px !important;
  background: #f6f8fa !important;
}

.send-button {
  align-self: flex-end !important;
  background: #0969da !important;
  color: white !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
}

.typing-indicator {
  display: flex !important;
  padding: 12px 20px !important;
  align-items: center !important;
  background: #f6f8fa !important;
}

.message {
  margin-bottom: 16px !important;
  max-width: 85% !important;
}

.user-message {
  display: flex !important;
  justify-content: flex-end !important;
}

.bot-message {
  display: flex !important;
  justify-content: flex-start !important;
}

.message-content {
  padding: 12px 16px !important;
  border-radius: 16px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.user-message .message-content {
  background: #0969da !important;
  color: white !important;
}

.bot-message .message-content {
  background: #f6f8fa !important;
  color: #24292f !important;
  border: 1px solid #d0d7de !important;
}
