/* reset */
* {
  font-size: 16px;
  margin: 0rem;
  padding: 0rem;
}
/* layout */
html {
  overflow-y: scroll;
}
body {
  max-width: 900px;
  margin: auto auto;
}
main {
  width: 100%;
  padding: 1rem 0;
}
main * {
  padding: 0.2rem;
  font-family: sans-serif;
}
/* common elements */
button {
  cursor: pointer;
  border: none;
  padding: 0.5rem;
  border: 1px solid #ccc;
}
h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
table {
  width: 100%;
}
label {
  user-select: none;
}
form {
  padding: 0;
  margin: 0;
}
select {
  margin: 0.25rem;
  padding: 0.25rem;
  width: 12rem;
}
input {
  margin: 0.25rem;
  padding: 0.25rem;
  width: 12rem;
  box-sizing: border-box;
}
code {
  background: #eee;
  font-family: "Courier New", Courier, monospace;
}
a.disabled {
  color: black;
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
/* helper classes */
.activeButton {
  background: #aaa;
}
.horiz {
  display: flex;
  flex-direction: row;
}
.vert {
  display: flex;
  flex-direction: column;
}
/* header */
.nav {
  margin-bottom: 1rem;
}
.link {
  margin: 0 0.5rem;
}
.headerTitle {
  display: flex;
  align-items: center;
}
.headerTitle > img {
  width: 3rem;
  margin: 0 0.25rem;
}
/* menu */
.menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.filterList {
  display: flex;
}
.filterDisplay {
  background: #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.25rem;
}
.badFilter {
  text-decoration: line-through;
}
/* table */
.tableHeader {
  min-width: 8rem;
  text-align: left;
}
/* about */
.about {
  max-width: 30rem;
}
