/* Mechanics Tailwind's utility classes can't express — everything else is
   utility classes in the templates. Per-year tab visibility rules are
   generated inline in home.html, since the set of years is runtime data. */

.tab-panel {
  display: none;
}

/* Default styling for Django's own unstyled auth-form inputs (login, password
   reset) — forms this app builds itself (wishlist/reunion) carry Tailwind
   classes directly instead; this only fills the gap for stock Django output. */
main input[type="text"],
main input[type="password"],
main input[type="email"] {
  width: 100%;
  font-size: 14px;
  color: #23262a;
  background: #fff;
  border: 1px solid #d9d4c6;
  border-radius: 2px;
  padding: 9px 10px;
}
main input[type="text"]:focus,
main input[type="password"]:focus,
main input[type="email"]:focus {
  outline: 2px solid #2c5f56;
  outline-offset: 1px;
  border-color: #2c5f56;
}
