:root {
  --bg-main: #0a0510;
  --bg-editor: #120820;
  --accent: #ff5577;
  --border: rgba(255, 85, 119, 0.2);
  --font-mono: "Fira Code", monospace;
}

body {
  margin: 0;
  display: flex;
  height: 100vh;
  background: var(--bg-main);
  color: #eee;
  font-family: var(--font-mono);
  overflow: hidden;
}

#editor-pane {
  width: 40%;
  height: 100%;
  background: var(--bg-editor);
  border-right: 1px solid #333;
  overflow: hidden;
}

#tsl-editor {
  height: 100%;
}

#tsl-editor .cm-editor {
  height: 100%;
}

#tsl-editor .cm-editor.cm-focused {
  outline: none;
}

#viewer {
  width: 60%;
  height: 100%;
  position: relative;
}

#error {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 50, 50, 0.9);
  padding: 15px;
  font-size: 13px;
  display: none;
  z-index: 10;
}
