/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - Neuroevolution (Frog)                                    - */
/* -                                                          - */
/* - Author: Cylian                                           - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#neuro-canvas {
  width: 100%;
  height: 100%;
  background: var(--background-color-surface); }

#history-canvas,
#network-canvas {
  width: 100%;
  height: auto;
  border: 1px solid var(--draw-color-surface);
  border-radius: 4px;
  background: var(--background-color-surface); }

.neuro-controls {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem; }
  .neuro-controls .is-start {
    display: block; }
  .neuro-controls .is-pause {
    display: none; }
  .neuro-controls.is-running .is-start {
    display: none; }
  .neuro-controls.is-running .is-pause {
    display: block; }
