* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  font-weight: normal;
  color: rgb(0, 0, 0);
}

*:active, *:focus {
  outline: none;
}

body {
  font-size: 15px;
  background-color: var(--background-color);
  height: 100vh;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: rgb(7, 105, 176);
  transition: 0.3s;
}

a:hover {
  color: rgb(4, 83, 140);
}

b {
  font-weight: bold;
}

h1 {
  font-size: 32px;
}

h4 {
  font-weight: bold;
}

.navbar {
  width: 100%;
  background-color: var(--header-color);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.navbar * {
  color: rgb(255, 255, 255);
}

.navbar-brand {
  float: left;
}

.navbar-brand a {
  padding: 12px 15px;
  display: inline-block;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

.navbar-brand a:hover {
  color: rgb(255, 255, 255);
}

.navbar-logo {
  background-image: url('/static/img/logo.png');
  background-size: 85%;
  background-repeat: no-repeat;
  position: absolute;
  top: 1px;
  left: 3px;
  width: 28px;
  height: 28px;
}

.navbar-title {
  margin-left: 52px;
}

.navbar-items {
  float: left;
  list-style-type: none;
}

.navbar-item {
  float: left;
}

.navbar-item a {
  padding: 12px 15px;
  display: inline-block;
  transition: 0.3s;
  color: rgb(255, 255, 255);
}

.navbar-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(255, 255, 255);
}

.container {
  padding: 30px 30px 50px 30px;
  min-height: 100vh;
}

.footer {
  width: 100%;
  background-color: var(--footer-color);
}

.copyright {
  margin: 0 auto;
  text-align: center;
  color: rgb(0, 0, 0);
  font-size: 10px;
  padding: 10px 0;
}

.report-sequence {
  font-family: monospace;
  font-size: 1.25em;
}
