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

.container {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.fruit-list, .emoji-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fruit {
  padding: 10px 20px;
  background-color: #e0e0e0;
  border-radius: 5px;
  cursor: grab;
  text-align: center;
}

.emoji-grid {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  gap: 10px;
}

.emoji-area {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  background-color: #ffeb3b;
  border: 2px dashed #ccc;
}

.correct {
  background-color: #a5d6a7;
}

.wrong {
  background-color: #ef9a9a;
}