/* modulo.css — ajustes propios del módulo Python, sobre base_style.css */

.leccion-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ejercicio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.ejercicio-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
}

.enunciado {
  margin-bottom: 16px;
}

.enunciado code {
  background: var(--bg-panel-2);
  padding: 2px 6px;
  font-family: var(--font-mono);
}

.teoria pre.console {
  margin: 12px 0;
}

.teoria code {
  background: var(--bg-panel-2);
  padding: 2px 6px;
  font-family: var(--font-mono);
}

.editor-actions {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.result-msg {
  white-space: pre-wrap;
  margin-top: 10px;
}

.top-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
