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

.container {
  max-width: 350px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  color: #1e90ff;
  margin: 0;
}

.game {
  border: 1px solid #ccc;
  border-radius: 5px;
  /* padding: 15px; */
}

.sentences {
  display: flex;
  flex-direction: column;
}

.sentence {
  padding: 7px;
  cursor: move;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 7px;
}

.buttons {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

button {
  /* padding: 10px 20px; */
  margin: 0 5px;
  border: none;
  background-color: #1e90ff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

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

.result-message {
  text-align: center;
  font-weight: bold;
}

.result-correct {
  color: #00cc00; /* Green color for "Congratulations!" message */
}

.result-incorrect {
  color: #ff0000; /* Red color for "Try again" message */
}

/* Adjustments for smaller screen sizes (mobile) */
@media screen and (max-width: 600px) {
  .game {
    padding: 10px; /* Decrease padding for the game container */
  }

  .sentence {
    font-size: 14px; /* Decrease font size for sentences */
  }

  .buttons {
    flex-direction: column; /* Stack buttons vertically */
    margin: 10px 0;
  }

  button {
    width: 100%; /* Make buttons full width */
    margin: 5px 0;
  }
}