body {
  background-color: #001100;
  color: #00ff00;
  height: 100%;
  margin: 0;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 255, 0, 0.015) 0px,
    rgba(0, 255, 0, 0.015) 1px,
    transparent 1px,
    transparent 3px
  );
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 255, 0, 0.01);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.navbar {
  background-color: #00ff00;
  display: flex;
  align-items: center;
  color: black;
  min-height: 64px;
  width: 100%;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.navbar span {
  color: black;
}

.navbar img {
  filter: brightness(0) invert(0);
}

.dropdown-container {
  margin: 1rem 0.8rem 0.5rem 0.8rem;
}

.tab {
  border: none;
}

.tab-item {
  margin: 0;
}

.tab-item a:focus {
  box-shadow: none;
  outline: none;
}

.tab .tab-item a.active,
.tab .tab-item a {
  color: #060;
}

.tab .tab-item a.active,
.tab .tab-item a:hover,
.tab .tab-item a.active,
.tab .tab-item.active a {
  color: #00ff00;
}

button,
#connectmydevice {
  font-size: 16px;
}

button i {
  color: white;
}

button.btn,
button.btn.btn-primary {
  background-color: #00ff00;
  color: black;
  border: none;
}

button.btn:hover,
button.btn:focus,
.btn.btn-primary:focus,
.btn.btn-primary:hover {
  background-color: #0c0;
  color: black;
  box-shadow: none;
}

button.btn-link:hover {
  background-color: inherit;
  color: inherit;
}

a.c-hand {
  color: white;
}

.tile .tile-subtitle,
.tile .tile-title {
  margin: 0;
}

.tile .tile-subtitle,
.tile .tile-title {
  text-shadow: none;
}

.panel {
  border: none;
}

.panel .panel-body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tile {
  border: 1px solid #00ff00;
  box-shadow: none;
  margin: 3px;
  padding: 10px;
  display: flex;
  min-height: 225px;
  flex-direction: row;
  position: relative;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  background-color: rgba(0, 255, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.tile-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .tile {
    width: 100%;
  }
}

.tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 255, 0, 0.05);
  mix-blend-mode: screen;
  z-index: 1;
}

.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 255, 0, 0.15) 49%,
    rgba(0, 255, 0, 0.05) 51%
  );
  background-size: 100% 4px;
  z-index: 2;
  animation: scanlines 1s linear infinite;
}

.tile::before,
.tile::after {
  pointer-events: none;
}

.tile h4,
.tile-title {
  color: #00ff00;
  font-weight: normal;
  margin: 1rem 0 0 0;
  text-shadow:
    0 0 2px #00ff00,
    0 0 2px #00ff00;
  z-index: 0;
}

.tile span,
.tile-author {
  color: #027e02;
  display: block;
  font-size: 0.7rem;
  font-weight: bolder;
  margin: 0 0 0.25rem 0;
  padding-top: 0;
}

.tile:hover {
  box-shadow: 0 0 10px #00ff00;
}

@media (max-width: 960px) {
  .tile {
    height: auto;
  }
}

.modal-container {
  color: black;
}

.modal-body .content {
  background-color: white;
}

.hero {
  background-color: #00ff00;
  color: black;
}

.form-input {
  background-color: #030;
  color: white;
  border: none;
}

input.form-input::placeholder {
  color: white;
}

.chip {
  background-color: #030;
  color: black;
  border: none;
}

.chip.active {
  background-color: #00ff00;
  color: black;
  border: none;
}

iframe,
.modal-body {
  background-color: white;
}

.modal-container {
  max-height: 600px;
}

.badge:not([data-badge])::after,
.badge[data-badge]::after {
  box-shadow: none;
  background: #00ff00;
  background-color: #00ff00;
  color: black;
}

.icon.icon-favourite {
  text-indent: 0px;
}
.icon.icon-favourite::before {
  content: url('../img/heart-hollow.svg');
}

.icon.icon-favourite-active {
  text-indent: 0px;
}
.icon.icon-favourite-active::before {
  content: url('../img/heart.svg');
}

@keyframes scanlines {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 4px;
  }
}
