:root {
  --navy: #13172c;
  --blue: #6473c0;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
header {
  background-color: white;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body {
  min-height: 100vh;
}
.content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#headerLogoContainer {
  height: fit-content;
  width: fit-content;
  cursor: pointer;
}
#headerLogo {
  height: 90px;
  width: auto;
  max-width: 65%;
  cursor: pointer;
  object-fit: contain;
}
nav {
  display: flex;
  flex-direction: row;
  row-gap: 15px;
}
.navItem {
  color: black;
  text-decoration: none;
}
.button {
  width: fit-content;
  height: fit-content;
  margin: auto;

  padding: 8px 20px;
  background-color: var(--navy);
  color: white;
  border-radius: 5px;
}
/* Pages */
.pageTitle {
  font-size: 24pt;
  text-align: center;

  padding: 15px;
  padding-top: 45px;
}

/* Login Form */
#adminLoginForm {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  width: fit-content;
  margin: auto;
}
.adminLoginInput {
  width: 300px;
  height: 30px;
  margin: auto;
  padding: 5px;
}
.adminLoginButton {
  width: fit-content;
  height: fit-content;

  border: none;
  border-radius: 5px;
  background-color: var(--navy);
  color: white;
  padding: 10px 35px;
  margin: auto;
}
.adminLoginButton:hover {
  opacity: 0.8;
}
#takeMeBack {
  text-align: center;
  padding-top: 55px;
}

/* Dashboard */
.databaseList {
  height: fit-content;
}
.databaseList table {
  text-align: center;
  border-collapse: collapse;
}
.databaseList tr {
  height: 35px;
}
.databaseList tr:nth-child(even) {
  background-color: lightgray;
}
.databaseList tr:first-child {
  background-color: grey;
}
