body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#controls {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 350px;
}

.box {
  background: white;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

svg {
  width: 350px;
  overflow: visible;
}

#logoImg {
  cursor: move;
}

#downloadBtn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #2196f3;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}
