/*
 * Machine de Turing - visualiseur et simulateur.
 * SPDX-FileCopyrightText: 2015-2021 Andy Li
 * SPDX-FileCopyrightText: 2026 Laurent Abbal
 * SPDX-License-Identifier: BSD-3-Clause AND AGPL-3.0-only
 * Voir LICENSE-BSD.txt et LICENSE.txt.
 */

.machine {
  text-align: center;
}

.machine > svg {
  display: block;
  margin: auto;
}

.node {
  cursor: move;
}

.current-state {
  stroke: gold;
  stroke-width: 5px;
}

text {
  text-anchor: middle;
  pointer-events: none;
}

.nodelabel {
  font-size: 15px;
  stroke: black;
  stroke-width: 0.6;
}

.edgelabel {
  font-size: 10px;
  fill: #aaa;
  letter-spacing: 0.2em;
}

.edgepath {
  stroke: #ccc;
  fill: none;
  pointer-events: none;
}

.edgepath.active-edge {
  stroke: lightskyblue;
}

#arrowhead, #reversed-arrowhead {
  stroke: #ccc;
  fill: #ccc;
}

#active-arrowhead, #reversed-active-arrowhead {
  stroke: lightskyblue;
  fill: lightskyblue;
}
