/* src/style.css */
html, body, #root {
  height: 100%;
  margin: 0;
}

.muted {
  opacity: .7;
}

.todo {
  display: inline-block;
  border: 2px dashed;
  border-radius: .5rem;
  padding: .35rem .5rem;
  font-size: .9rem;
}

.small {
  font-size: .9rem;
}

.tiny {
  font-size: .8rem;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
