@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #8f8f8f;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.row {
  display: flex;
  margin-bottom: 10px;
}

input[type="button"] {
  width: 100px;
  height: 100px;
  font-size: 40px;
  border: 2px solid #333;
  border-radius: 10px;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;

}

input[type="button"]:hover {
  background-color: #4f4f4f;
}

h1,
h2 {
  margin-bottom: 10px;
}

#toggleAI,
#resetGame {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  border: 2px solid #333;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#toggleAI:hover,
#resetGame:hover {
  background-color: #4f4f4f;
}

.ai-status {
  margin-left: 10px;
  font-size: 14px;
  display: inline-block;
  color: red;
}

.ai-status.enabled {
  color: green;
}

.ai-status.disabled {
  color: red;
}