#fc-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

#fc-chat-toggle {
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
}

#fc-chat-container {
  width: 340px;
  height: 460px;
  background: #fff;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.fc-chat-header {
  background: #0f172a;
  color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
}

#fc-chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f9fafb;
}

.fc-message {
  margin: 6px 0;
  padding: 10px;
  border-radius: 12px;
  max-width: 75%;
}

.fc-user {
  background: #2563eb;
  color: white;
  margin-left: auto;
}

.fc-bot {
  background: #e5e7eb;
}

.fc-chat-input-area {
  display: flex;
  border-top: 1px solid #ddd;
}

#fc-chat-input {
  flex: 1;
  border: none;
  padding: 10px;
}

#fc-send-btn {
  background: #0f172a;
  color: white;
  border: none;
  padding: 10px;
}