body {
  background-color: #f0f8ff;
  font-family: Arial, sans-serif;
}

.container {
  position: relative;
  margin: 20px auto;
  width: 800px;
  height: 600px;
  border: 2px dashed #ccc;
  background-color: #fff;
}

.parts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  border: 2px solid #ddd;
  background-color: #f9f9f9;
  justify-items: center;
  align-items: center;
  max-width: 280px;
  height: 580px;
  overflow-y: auto;
  float: left;
}

.parts img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 5px;
  transition: transform 0.2s;
  margin: 5px;
}

.parts img:hover {
  transform: scale(1.1);
}

.potato-base {
  position: absolute;
  top: 50px;
  left: 350px;
  width: 250px;
  height: 350px;
}
