.layout-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .layout-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}

#drop-area {
  width: 300px;
  height: 300px;
  border: 2px dashed #aaa;
  border-radius: 15px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#drop-area.dragover {
  background-color: #1d1d1d;
}

canvas {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 300px;
  height: 300px;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.drop-area-text {
  word-break: keep-all;
  width: 220px;
}