body {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
}

template {
  display: none;
}

#app h1 {
  text-align: center;
}

#main {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin: auto 0;
}

#main h2 {
  text-align: center;
}

.column {
  width: 400px;
  margin-left: 1em;
  flex-direction: column;
}

.center.column {
  width: 400px;
}

/*
.last.column {
  width: 200px;
}
*/

textarea {
  font-family: monospace;
  font-size: 2em;
  width: 100%;
}

#scrubber {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

#scrubber button.run {
  background: url(../images/play-button.png);
  width: 45px;
  height: 36px;
  border: none;
  cursor: pointer;
}

#scrubber button.print {
  background: url(../images/print-button.png);
  width: 45px;
  height: 36px;
  border: none;
  cursor: pointer;
}

#scrubber input {
  width: 100%;
}

#scrubber .current::after {
  content: "/";
}

#tools {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#tools button {
  opacity: 0.25;
  background: white;0
  border: 1px solid #999;
  width: 80px;
  margin: 0.5em;
  /*cursor: pointer;*/
}

select {
  width: 100%;
}

#tools button:hover {
  /*border: 1px solid #000;*/
}

#footer {
  margin-top: 2em;
  text-align: center;
}

div#svg {
    width:400px;
    height:300px;
}

div#svg svg {
    max-width: 100%;
    max-height: 100%;
}