html {
  min-height: 100vh;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
main.container {
  flex-grow: 1;
}

/* Navbar Logout Button */
button.link {
  border: none;
  background: none;
  color: var(--pico-primary);
  padding: 0;
  margin: 0;
  cursor: pointer;
}
button.link:hover {
  text-decoration: underline;
}

ul li {
  list-style-type: circle;
}

a.banner, a.banner ul {
  color: var(--pico-h1-color);
  text-decoration: none;
}
a.banner img {
  height: 2rem;
}

.helptext, form > ul li, .subtle {
  font-size: 75%;
  color: var(--pico-muted-color);
}
.error {
  color: var(--pico-del-color);
}

/* Home */
.flex-grid {
  display: flex;
  gap: var(--pico-spacing);
  flex-wrap: wrap;
}
.flex-grid form {
  width: 16rem;
}
/* Tracker Button */
button.tracker { 
  width: 100%;
  font-size: 80%;
  max-width: 16rem;
  min-height: 5rem;
}
button.tracker[aria-busy=true] {
  pointer-events: auto;
}
