body {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-image: url('bkg-3.jpg');
  background-size: 100% auto;
  background-position: center top;
}
body div {
  margin: 0;
  padding: 0;
}
body .header {
  display: flex;
  flex-direction: row;
  padding: 5px;
  background-color: #ffffff99;
  text-align: left;
  margin: 0 0 0 0;
  min-height: 70px;
}
body .header .logo {
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  height: 70px;
  width: 200px;
  top: 5px;
  flex-grow: 0;
  min-height: 100%;
  background-image: url('black-bird.png');
}
body .header .title {
  flex-grow: 1;
  color: #000066;
}
body .navmenu {
  padding: 0px 0px 2px 2px;
  margin: 0;
  background-color: #00000044;
  display: block flex;
  flex-direction: row;
  flex-wrap: wrap;
}
body .navmenu .item {
  display: block;
  padding: 0 0 0 0;
  margin: 2px 2px 0px 0px;
  flex-grow: 1;
  min-width: 250px;
  min-height: 60px;
  max-width: 250px;
  height: 100%;
}
body .navmenu .item a {
  min-height: 60px;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 20px 20px;
  margin: 10px 10px 10px 10px;
  background-color: #ffffffdd;
  display: block;
  text-decoration: none;
  color: darkblue;
  font-weight: bolder;
}
body .navmenu .item a:hover {
  background-color: #00008bcc;
  color: white;
}
body .login-window {
  position: absolute;
  top: 0px;
  right: 20px;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
body .login-window .content {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 5px 5px 5px;
}
body .login-window .content label {
  font-size: smaller;
  font-weight: bold;
}
body .login-window .content form {
  width: 90%;
  height: 90%;
}
body .login-window .content form input {
  width: 100%;
  font-size: smaller;
}
body .modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000bb;
}
body .modal .dialog-content {
  padding: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  min-height: 100px;
  max-height: 95vh;
  min-width: 25vw;
  background-color: #eeeeffe0;
  padding-bottom: 5px;
}
body .modal .dialog-content .title {
  padding: 5px 5px 5px 5px;
  background-color: dodgerblue;
  color: white;
  font-weight: bolder;
  display: block flex;
  flex-direction: row;
  min-height: 24px;
  max-height: 24px;
}
body .modal .dialog-content .title div {
  flex-grow: 1;
  align-content: center;
}
body .modal .dialog-content .title .close {
  flex-grow: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
body .modal .dialog-content .title .close:before {
  display: block;
  content: 'x';
  min-width: 24px;
  min-height: 24px;
  text-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  align-content: center;
}
body .modal .dialog-content .title .close:hover {
  background-color: #ffffff99;
}
body .modal .dialog-content .description {
  padding: 5px 15px 0px 15px;
}
body .modal .dialog-content .actions {
  padding: 5px 5px 5px 5px;
  display: block flex;
  flex-direction: row;
  padding-right: 15px;
}
body .modal .dialog-content .actions .spacer {
  flex-grow: 100;
}
body .modal .dialog-content .actions button {
  flex-grow: 0;
  background-color: dodgerblue;
  border: none;
  color: white;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  margin-right: 10px;
}
body .modal .dialog-content .actions button:hover {
  color: dodgerblue;
  background-color: white;
}
body .modal .dialog-content .output {
  width: 75vw;
  height: 50vh;
  min-width: 75vw;
  min-height: 50vh;
  max-width: 75vw;
  max-height: 50vh;
  overflow-x: auto;
  overflow-y: scroll;
  margin: 4px;
  border-radius: 10px;
  border: 1px solid white;
  background-color: white;
}
body .modal .dialog-content .output #output {
  padding: 10px;
}
body .modal .dialog-content .output.dynamic {
  min-width: 75vw;
  min-height: unset !important;
  height: unset !important;
  overflow-y: auto !important;
}
body .modal .dialog-content .logline {
  font-family: monospace;
  margin: 0;
}
body .modal .dialog-content .logline .offset {
  font-size: smaller;
}
body .modal .dialog-content .logline .severity {
  font-size: smaller;
  font-weight: bold;
}
body .modal .dialog-content .logline .message {
  font-size: smaller;
}
body .hidden {
  display: none;
}
