.editor-wrapper {
  padding: 20px;
}

.editor-container {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  max-width: 700px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #ffffff;
  display: flex;
}

.editor-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #333;
}

.editor-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  width: 20%;
}
.editor-canvas{
    width: 80%;
    padding: 10px;
    border: solid 1px #eee;
    border-radius: 8px;
}

.control-input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 80%;
  margin-bottom: 20px !important;
}

.control-color {
  width: 50px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  width: 80%;
}

.control-file {
  padding: 8px;
  margin-top: 20px !important;
}

.control-button {
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
}

.control-button.add {
  background: #0073aa;
  color: #fff;
}

.control-button.delete {
  background: #dc3232;
  color: #fff;
  width: 80%;
}

.control-button.preview {
  background: green;
  color: #fff;
  width: 80%;
}



.canvas-area {
  border: 2px dashed #ccc;
  max-width: 100%;
  margin: 0px auto;
}
