.drop-zone {
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
  cursor: pointer;
  color: #888;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: #185fa5;
  background: #f0f6fc;
}

.editor-area {
  margin-top: 24px;
}

.file-info-line {
  font-size: 13px;
  color: #555;
  margin-bottom: 16px;
}

.field {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 16px;
}

.field input[type="text"] {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.options-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.option {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #555;
}

.option input[type="range"] {
  margin-top: 6px;
  width: 150px;
}

.option input[type="color"] {
  margin-top: 6px;
  width: 40px;
  height: 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.action-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.action-row button {
  padding: 10px 22px;
  background: #185fa5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.action-row button:hover:not(:disabled) {
  background: #0c447c;
}

.action-row button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.action-row button.secondary {
  background: white;
  color: #185fa5;
  border: 1px solid #185fa5;
}

.action-row button.secondary:hover {
  background: #f0f6fc;
}

.status-msg {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.download-area button {
  padding: 10px 22px;
  background: #2f8a2f;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.download-area button:hover {
  background: #226b22;
}