/* Editor pane and console styles */
.editor-pane {
  width: 40%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

#monaco-container {
  flex: 1;
  min-height: 100px;
}

.console-pane {
  height: 150px;
  min-height: 50px;
  background: var(--bg-color);
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.console-header {
  background: var(--header-bg);
  padding: 5px 15px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#console-output {
  flex: 1;
  padding: 10px;
  font-family: "Consolas", monospace;
  font-size: 13px;
  overflow-y: auto;
  color: var(--secondary-text);
  white-space: pre-wrap;
}

.log-error {
  color: var(--danger-color);
}

.log-info {
  color: var(--accent-color);
}

.robot-function {
  color: #ffb81c !important; /* Keep brand yellow for robot functions */
  font-weight: bold;
}

