display: flex;          /* Arrange areas side by side */
  justify-content: center;  /* Center the content */
  gap: 20px;             /* Spacing between areas */
}

#fruit-list {
  width: 200px;
}.fruit {
  background-color: #f0f0f0;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: grab;
}

#emoji-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Adjust for number of emojis */
  gap: 20px;
}.emoji-area {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
}