/* Reset default styles */
body, html {
  margin: 0;
  padding: 0;
}

/* Center the game canvas */
#gameCanvas {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Style the game score */
#score {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

/* Style the game over message */
#gameOver {
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

/* Style the AI chatbot input and output */
#chatbotContainer {
  margin-top: 20px;
}

#chatbotInput {
  width: 100%;
  padding: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

#chatbotOutput {
  margin-top: 10px;
  padding: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  max-height: 200px;
  overflow-y: auto;
}

/* Add more custom styles as needed */
