body,
input,
textarea,
select,
button,
td,
thead,
tbody {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  color: #333;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0 2px;
}

h1 {
  display: inline
}

td,
th,
table {
  border: 1px solid;
  border-collapse: collapse !important;
  text-align: center;
}

/* table {
    background-color: gray;
} */

input {
  /* background-color: transparent; */
  background-color: pink;
  border: 0px solid;
  height: 12px;
  width: 60px;
  color: #000;
  border-radius: 4px;
}

button {
  /* background-color: transparent; */
  background-color: pink;
  border: 0px solid;
  font-size: 10px !important;
  height: 14px;
  width: 90px;
  color: #000;
  border-radius: 4px;
}

.narrow {
  width: 30px !important;
}

input:focus {
  outline: none;
  background-color: red;
}

button:focus {
  outline: none;
  background-color: red;
}

.right {
  text-align: right;
}

/* td {
    display: block;
    white-space: pre;
}  */

.anima {
  stroke-dasharray: 5;
  animation: dash 566s linear;
}

.ring {
  stroke-dasharray: 5;
}

.dash {
  stroke-dasharray: 25;
  opacity: 0.27;
}
.active {
  stroke-dasharray: 25;
  animation: dash 266s linear;
  opacity: 1;
}

@keyframes dash {
  to {
    stroke-dashoffset: -10000;
  }
}

.changed {
  background-color: lightgreen;
  font-weight: bold
  /* -webkit-animation: name 0.1s;
  animation: name 0.1s; */
}

@keyframes name {
  0% {
    background-color: lightgreen;
    font-weight: bold
  }

  100% {
    background-color: white;
    font-weight: normal
  }
}

.noclick {
  pointer-events: none;
}