:root {
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  background-color: #FAF9F6;
}

body {
  margin: 0px;
  background-color: #D5F9DE;
}

.a__email {
  text-decoration: none;
  color: #121619;
}

.a__styling {
  color: #FAF9F6;
  text-decoration: none;
}

.a__styling:visited {
  text-decoration: none;
}

.a__styling:hover {
  font-weight: bold;
}

.a__logout {
  color: #DB2B39;
  font-weight: bold;
  text-decoration: none;
}

.a__logout:visited {
  text-decoration: none;
}

.Wrapper {
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #D5F9DE;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.header__logo {
  display: flex;
  width: 20%;
  justify-content: center;
  margin-top: 0.8em;
}
.header__title {
  display: flex;
  font-size: 2.8em;
}

.content {
  display: flex;
  flex-direction: column;
  background-color: #D5F9DE;
}
.content__nav {
  display: flex;
  flex-direction: row;
  font-size: 1.8em;
}
.content__nav__item {
  display: flex;
}
.content__text {
  margin-left: 0.1em;
  font-size: 1.5em;
  overflow-x: none;
}
.content__table {
  overflow-x: hidden;
}
.content__terms {
  display: flex;
  flex-direction: column;
  margin: 0.3em;
}
.content__terms__h2 {
  color: #C10A0A;
}
.content__terms__b {
  color: #C10A0A;
}
.content__terms__forms {
  display: flex;
  flex-direction: row;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown__button {
  width: 100%;
  height: 1.5em;
  font-size: 1.5em;
  font-weight: bold;
  border-style: none;
  text-align: left;
  background-color: #ffa500;
}
.dropdown__terms {
  display: none;
  position: relative;
  background-color: #f1f1f1;
  height: auto;
  padding: 0.3em;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.show {
  display: block;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
}

a.content__nav__item {
  color: #121619;
  text-decoration: none;
  font-weight: bold;
}

a.content__nav__item:visited {
  color: #121619;
}

.form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0.5em;
}
.form__label {
  font-size: 1.4em;
}
.form--home {
  display: flex;
  flex-direction: row;
  font-size: smaller;
}
.form__input {
  font-size: 1.3em;
  width: 15em;
  margin-top: 0.1em;
  background-color: #FAF9F6;
  border-radius: 0.2em;
}
.form__input--search {
  margin-left: 0.3em;
  margin-right: 0.3em;
  max-width: 15%;
}
.form__check {
  width: 2em;
  height: 2em;
}
.form__select {
  font-size: 1.3em;
  width: 15em;
  border-radius: 0.2em;
}
.form__button {
  width: 10em;
  height: 2em;
  font-size: 2em;
  font-weight: bold;
  border-style: none;
}
.form__button--sub {
  background-color: #06921F;
  color: #121619;
  border-radius: 23px;
}
.form__button--cncl {
  background-color: #C10A0A;
  color: #FAF9F6;
  border-radius: 23px;
}
.form__button--search {
  background-color: #008DD5;
  color: #FAF9F6;
  height: 1.8em;
  font-size: 1em;
  margin-left: 0.3em;
  border: 0.1em solid black;
}

.footer {
  display: flex;
  flex-direction: column;
  background-color: #121619;
  color: #FAF9F6;
  text-align: center;
}
.footer__link {
  text-decoration: underline;
  font-weight: bold;
  color: #FAF9F6;
  font-size: 1.1em;
}

.nav {
  display: flex;
  flex-direction: row;
  color: #121619;
  font-size: 1em;
}
.nav__link {
  background-color: #3587A4;
  color: #FAF9F6;
  text-decoration: none;
  padding: 0.2em;
  border-radius: 0.2em;
  margin-right: 1em;
}
.nav__link:last-child {
  margin-right: 0;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: flex-end;
}

.nav-link {
  margin-left: 20px;
  padding: 10px 15px;
}

#form {
  padding-top: 1em;
  padding-bottom: 1em;
  width: 100%;
  background-color: #D5F9DE !important;
}

.tiles {
  display: grid;
  text-align: center;
  margin: 0.5em;
  color: #FAF9F6;
}
.tiles__count {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 1;
  grid-column-end: 5;
  background-color: #3587A4;
  padding: 0.1em;
  margin-bottom: 0.3em;
}
.tiles__count__text {
  font-size: 1.2em;
  font-weight: bolder;
  color: #DB2B39;
}
.tiles__icons {
  display: grid;
  align-items: center;
  justify-content: space-evenly;
  background-color: #3587A4;
  grid-column-start: 1;
  grid-column-end: 5;
  padding: 0.1em;
  width: 100%;
  margin-bottom: 0.3em;
}
.tiles__1 {
  justify-content: center;
  align-items: center;
  grid-column: 1;
  grid-row: 2;
}
.tiles__2 {
  justify-content: center;
  align-items: center;
  grid-column: 2;
  grid-row: 2;
}
.tiles__3 {
  justify-content: center;
  align-items: center;
  grid-column: 3;
  grid-row: 2;
}
.tiles__4 {
  justify-content: center;
  align-items: center;
  grid-column: 4;
  grid-row: 2;
}
.tiles__5 {
  justify-content: center;
  align-items: center;
  grid-column: 5;
  grid-row: 2;
}

.tableDisplay {
  padding: 1em;
}

#logins__link {
  color: #121619;
  text-decoration: none;
}
#logins__link:visited {
  text-decoration: none;
  color: #121619;
}

.icons img {
  max-height: 5em;
}

/* Custom DataTables Buttons */
.dt-button {
  background-color: #007bff; /* Primary color */
  color: #fff; /* Text color */
  border: none;
  border-radius: 4px; /* Match button corner radius */
  padding: 8px 16px; /* Adjust padding */
  margin: 0 4px; /* Space between buttons */
  font-size: 14px; /* Adjust font size */
  cursor: pointer;
}

.dt-button:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

.dt-button:focus {
  outline: none; /* Remove default outline */
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5); /* Custom focus effect */
}/*# sourceMappingURL=style.css.map */