:root {
  --primary: #0172ad;
  --text-color: #111827;
  --border-color: #d1d5db;
  --button-bg: #111827;
  --button-color: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text-color);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

main {
  display: block;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(100%, 1120px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.row > * {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.align-items-center {
  align-items: center;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-md {
  flex: 1 1 0;
  min-width: 0;
}

.grid.jobs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid.jobs ul {
  margin: 0;
  padding-left: 1.25rem;
}

.img-fluid {
  display: block;
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.ms-4 {
  margin-left: 1.5rem;
}

form {
  margin: 0;
}

label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font: inherit;
  color: inherit;
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(1, 114, 173, 0.2);
  outline-offset: 1px;
  border-color: var(--primary);
}

button,
.btn,
input[type="submit"],
input[type="button"] {
  border: 1px solid var(--button-bg);
  background: var(--button-bg);
  color: var(--button-color);
  border-radius: 6px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.2;
  text-decoration: none;
  display: inline-block;
}

button:hover,
.btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: #000000;
  border-color: #000000;
}

.btn-primary {
  background: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover {
  background: #0b5ed7;
  border-color: #0a58ca;
}

.btn-lg {
  padding: 0.65rem 1rem;
}

.contrast {
  background: #181c25;
  border-color: #181c25;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 992px) {
  .grid.jobs {
    grid-template-columns: 1fr;
  }

  .ms-4 {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .col-6 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.marginTop {
  margin-top: 15px;
}

.centerAlign {
  text-align: center;
}

.centerMargins {
  margin-left: auto;
  margin-right: auto;
}

.notificationBackground {
  color: white;
  margin-bottom: 2px;
}

.notificationBackground li {
  color: white;
}

.notificationMessage {
  margin-left: 25px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.notificationExit {
  margin-right: 10px;
}

.notificationExitButton {
  width: 40px;
}


.notificationBackground-debug {
  background-color: #00895A;
}

.notificationBackground-info {
  background-color: #6F7887;
}

.notificationBackground-success {
  background-color: #3C71F7;
}

.notificationBackground-warning {
  background-color: #D9C800;
}

.notificationBackground-error {
  background-color: #D93526;
}

.topNavRight {
  margin-right: 0px !important;
}

.topNavRight:hover {
  cursor: pointer;
}

@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.fadeOut {
  animation-name: fadeOut;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.youtubeIcon {
  width: 35px;
  height: 30px;
}

.twitterIcon {
  width: 35px;
  height: 30px;
}

.noLinkDecoration {
  color: #373c44;
  text-decoration: none;
}

.navButtonLink {
  margin-left: -5px;
}

footer {
  margin-top: 50px;
}

.tabs {
  text-decoration: none;
  color: #373c44;
}

.tabs label {
  color: #373c44;
  height: 30px;
}

[role="tabs"] {
  display: flex;
}

[role="tabs"] section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

[role="tabs"] figure {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  display: none;
}

[role="tabs"] [type="radio"]:checked+figure {
  display: block;
}

nav[role="tab-control"] label.active {
  color: var(--primary);
  cursor: pointer;
}

.live_metrics {
  cursor: pointer;
  width: 100%;
}

.live_metrics:before {
  content: '\002B';
}

.activecollapse:before {
  content: "\2212";
}

#contentcollapse {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #f1f1f1;
}
