/* General layout and styling */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #b47ede;
}

.container {
  text-align: center;
  width: 80%;
  max-width: 700px;
  padding: 20px;
  background-color: rgb(239, 195, 255);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.inputs label {
  font-size: 16px;
  margin-right: 10px;

}

.inputs input {
  font-size: 16px;
  width: 50px;
  margin: 10px;
  padding: 5px;
  
}

button {
  font-size: 16px;
  padding: 10px;
  margin: 10px;
  cursor: pointer;
  background-color: #b47ede;
  color: white;
  border: none;
  border-radius: 5px;
}

button:hover {
  background-color: #dda1ff;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.info {
  margin-top: 20px;
  font-size: 18px;
}

.combinations {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.square {
  width: 40px;
  height: 40px;
  background-color: lightgray;
  border-radius: 5px;
  transition: background-color 0.5s ease;
}
