:root {
  --default-color: #222;
  --default-text-color: #d8d8d8;
  --alt-text-color: #94c834;
  --company-color: #94c834;
  --company-alt-color: #76b108;
  --company-back: #f9fdf2db;
}
* {
  padding: 0;
  margin: 0;
}
::placeholder {
  color: #d3d3d3;
}
::-ms-input-placeholder { /* Edge 12 -18 */
  color: #d3d3d3;
}
body {
  background-color: aliceblue;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: system-ui;
  background-image: url('/assets/images/back.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
#notifications {
  position: fixed;
  top: 0;
  left: 0;
  max-height: 100vh;
  overflow: auto;
  z-index: 500;
}
div.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}
form {
  padding: 15pt;
  border-radius: 5pt;
  border-color: #222;
  border-width: 1px;
  box-shadow: 0 0 5pt #c0dbe39c;
  background-color: var(--company-back);
  color: black;
  min-width: 20vw;
}
form.search {
  padding: 1pt;
}
form div.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5pt;
}
form div.row.right {
  justify-content: flex-end;
}
form div.row.center {
  justify-content: center;
}
div.row.search {
  width: 100%;
}
form label {
  padding-right: 5pt;
}
button:hover {
  background-color: var(--company-alt-color);
}
button {
  background-color: var(--company-color);
  color: white;
  border: 0;
  box-shadow: 0 0 1pt black;
  cursor: pointer;
  transition: linear 0.15s background-color;
}
form input, form select {
  padding: 5pt 10pt;
  border-radius: 3pt;
  outline: 0;
  border: 1px solid #bfbfbf;
  transition: linear background-color 0.15s, linear color 0.15s;
  background-color: white;
  color: #222;
}
table button {
  padding: 2pt 5pt;
}
form input:focus {
  background-color: var(--company-color);
  color: white;
}
form button {
  padding: 5pt 10pt;
}
a, input, button {
  outline: 0;
}
div.hub {

}
div.hub a {
  width: 80vw;
  font-size: 6vw;
  background-color: #3485a1;
  color: white;
  border-color: white;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 2vw;
}
div.hub button {
  color: white;
  min-height: 30vh;
  width: 80vw;
  font-size: 6vw;
  background-color: #3485a1;
  color: white;
  border-color: white;
}
div.page img {
  max-width: 300pt;
  max-height: 140pt;
}
div.page form a {
  text-decoration: none;
  color: #222;
}
div.row.errors {
  flex-direction: column;
  color: white;
}
p.error {
  padding: 5pt;
  background-color: #910000;
  border-radius: 2pt;
  text-align: center;
  width: 100%;
}
textarea {
  display: block;
  width: 100%;
  padding: 5pt 10pt;
  background-color: #0d385da1;
  font-size: 2vw;
}
div.content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100vw;
}
nav {
  padding: 10pt;
  background-color: var(--default-color);
  color: var(--default-text-color);
  box-shadow: 0 0 0 1pt black;
  z-index: 400;
}
nav img {
  max-width: 150pt;
  max-height: 150pt;
}
nav ul li {
  min-width: 150pt;
  list-style-type: none;
  cursor: pointer;
  transition: linear transform 0.15s, color linear 0.15s;
}
nav ul li:hover {
  color: var(--alt-text-color);
  transform: scale(1.01);
}
div.content div.page {
  width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}
table {
  background-color: white;
  color: #222;
  border-collapse: collapse;
}
table thead {
  background-color: var(--alt-text-color);
  color: white;
}
table tbody tr:nth-child(odd) {
  background-color: #efefef;
}
table td {
  padding: 3pt 10pt;
}
div.row.full {
  width: 100%;
}
ul.actions {
  width: 100%;
  text-align: right;
}
ul.actions li {
  list-style-type: none;
  text-decoration: none;
  color: white;
  padding: 5pt 10pt;
  display: inline-block;
  background-color: var(--company-color);
}
ul.actions li:hover {
  background-color: var(--company-alt-color);
}
.notification {
  padding: 5pt;
  margin: 3pt;
  color: white;
  border-radius: 5pt;
  box-shadow: 0 1pt 1pt black, 0 0 5pt black;
  max-width: 30vw;
  opacity: 0.9;
  transition: linear opacity 0.15s;
}
.notification:hover {
  opacity: 1;
}
.notification button.close {
  position: absolute;
  right: 5pt;
  background-color: transparent;
  border: 0;
  color: white;
  margin-top: -5pt;
  cursor: pointer;
}
.notification.error {
  background-color: #8f1111;
}
.notification.warning {
  background-color: #837a00;
}
.notification.success {
  background-color: #0a8300;
}
.notification p {
  font-style: italic;
  padding: 1pt;
}