* {
  box-sizing:border-box;
}
article {
  padding:2rem;
}
body {
  background-color:#eee;
  display:flex;
  font-family:"Roboto", Arial, Helvetica, sans-serif;
  height:100%;
  margin:0;
  padding:0;
  width:100%;
}
h3:first-of-type {
  margin-top:0;
}
h5 {
  font-size:1rem;
  margin:0;
}
html {
  height:100%;
  width:100%;
}
main > header {
  background-color:#fff;
}
main {
  flex-grow:1;
  overflow-y:auto;
  width:100%;
}
main.landing-page {
  margin:5rem auto 0;
  max-width:30rem;
  padding:2rem;
}
main.landing-page h3 {
  margin-top:1rem;
}
main a {
  color:#2a9d8f;
  position:relative;
  text-decoration:none;
}
main a::after {
  background-color:#2a9d8f;
  bottom:-2px;
  content:'';
  height:1px;
  left:0;
  position:absolute;
  transition:all 250ms;
  width:0;
}
main a:hover::after {
  width:100%;
}
main footer {
  display:flex;
  justify-content:space-between;
  margin-top:2rem;
}
p {
  line-height:1.5rem;
}
section {
  align-items:center;
  display:flex;
}
section .annotation {
  flex-shrink:0;
  margin-right:2rem;
  width:25rem;
}
table {
  border-collapse:collapse;
  width:100%;
}
table td,
table th {
  border-bottom:1px solid #ccc;
  padding:1rem 0.5rem;
}
table th {
  text-align:left;
}
table tr.highlight {
  background:rgba(42, 157, 143, 0.15);
  color:#2b9d8f;
}
table tr:last-child td {
  border:none;
}
textarea {
  font-size:1rem;
  min-height:10rem;
  padding:1rem;
  max-width:100%;
  width:100%;
}
.card {
  background-color:#fff;
  border-radius:0.5rem;
  box-shadow:0 2px 4px rgba(0, 0, 0, 0.25);
  margin:1rem 0;
  max-width:50rem;
  padding:2rem;
  width:100%;
}
.card.tabbed {
  padding:0;
}
.chip {
  background-color:#ddd;
  border-radius:0.5rem;
  font-size:0.9rem;
  padding:0.25rem 1rem;
}
.form-group {
  display:flex;
  flex-wrap:wrap;
}
.form-group .half {
  width:calc(50% - 0.5rem);
}
.form-group .half:nth-child(odd) {
  margin-right:0.5rem;
}
.form-group .half:nth-child(even) {
  margin-left:0.5rem;
}
.half .toggle {
  margin:0.5rem 0;
}
.status {
  width:calc(50% - 1rem);
}
.statuses {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.hidden {
  display:none;
}
.logo {
  margin:0;
  text-align:center;
}
.logo .version {
  color:#666;
  font-size:0.9rem;
}
