@import url('https://fonts.googleapis.com/css2?family=Eater&display=swap');

html,
body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
label span.required {
  color: red;
}
a {
  text-decoration: none;
}
a:not(.btn):hover {
  text-decoration: underline;
}
.btn {
  font-weight: 700;
}
.n-brand,
.n-brand:hover {
  font-weight: 700;
  text-decoration: none;
}

body.with-aliens {
  background-image: url('../img/aliens.jpg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  font-family: 'Eater', serif;
}

body.with-aliens header.bg-light, body.with-aliens footer {
  background: #076907 !important;
}

body.with-aliens header a, body.with-aliens footer .text-muted {
  color: #fff !important;
}

body.with-aliens .content-wrap .container {
  padding: 25px;
  background: rgba(255, 255, 255, 0.5);
}

body.with-aliens a.btn {
  background: #000 !important;
  border-color: #000 !important;
}

body.with-aliens .content-wrap {
  width: 50%;
  max-width: 1200px;
  max-height: 50vh;
  overflow: hidden;
  overflow-y: scroll;
  padding: 0 !important;
  opacity: 0.7;
}

body.with-aliens footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.tag {
  padding: 2px 6px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 13px;
  text-transform: uppercase;
}

.input-group {
  display: flex;
}

.input-group select {
  min-width: 100px !important;
  width: auto !important;
  flex-grow: 0 !important;
  flex-shrink: 1 !important;
}

.input-group select+input {
  flex-grow: 1;
}

.pagination a {
  font-size: .875em;
}

.pagination a:not(:last-child) {
  margin: 0 15px 0 0;
}

html[data-bs-theme="dark"] thead.table-light tr {
  border-color: #606060 !important;
}

html[data-bs-theme="dark"] thead.table-light th {
  background-color: #202020 !important;
  border-color: #606060 !important;
  color: #fff !important;
}

html[data-bs-theme="dark"] thead.table-light th a {
  color: #fff !important;
}