body {
  margin: 0;
  font-family: Arial, sans-serif;
}

#toolbar {
  background: #333;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

#toolbar button,
.upload-button {
  background: #ffffff;
  color: #000000;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ccc;
}

.upload-button input {
  display: none;
}

#canvas {
  width: 100%;
  height: calc(100vh - 50px);
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.text-element {
  position: absolute;
  cursor: move;
  font-size: 20px;
  color: #000;
  user-select: none;
}

.image-element {
  position: absolute;
  cursor: move;
  max-width: 300px;
  user-select: none;
}