body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: #020617;
  color: #e5e7eb;
}

.topbar {
  height: 56px;
  background: #020617;
  border-bottom: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.topbar .actions {
  display: flex;
  gap: 8px;
}

.topbar button {
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.topbar button.secondary {
  background: #1e293b;
  color: #e5e7eb;
}

.topbar button:not(.secondary) {
  background: #0ea5e9;
  color: #020617;
}

.layout {
  display: flex;
  height: calc(100vh - 56px);
}

#canvas {
  flex: 1;
}

.editor-panel {
  width: 300px;
  border-left: 1px solid #1e293b;
  padding: 16px;
  overflow-y: auto;
}

.editor-panel h3 {
  margin-top: 0;
}

.editor-panel label {
  display: block;
  font-size: 12px;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #94a3b8;
}

.editor-panel input,
.editor-panel textarea,
.editor-panel select {
  width: 100%;
  background: #020617;
  border: 1px solid #1e293b;
  color: #e5e7eb;
  padding: 6px;
  border-radius: 4px;
}

.editor-panel textarea {
  resize: vertical;
  min-height: 60px;
}

.editor-panel button {
  width: 100%;
  margin-top: 12px;
  padding: 8px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.editor-panel .danger {
  background: #7f1d1d;
  color: #fff;
}
