:root {
  --bg-color-light: #ffffff;
  --text-color-light: #000000;
  --bg-color-dark: #121212;
  --text-color-dark: #ffffff;
}
body[data-theme="light"] {
  background-color: var(--bg-color-light);
  color: var(--text-color-light);
}
body[data-theme="dark"] {
  background-color: var(--bg-color-dark);
  color: var(--text-color-dark);
}
.container {
  flex: 1;
  max-width: 75%;
}
.footer {
  width: 100%;
  padding: 15px 0;
  background-color: var(--bg-color-light);
  color: var(--text-color-light);
}
.logo {
  width: 100%;
  max-width: 310px;
  height: auto;
}
.navbar {
  height: 50px;
  padding-top: 20px;
}
.navbar-brand img {
  height: 52px;
  width: 310px;
}
.navbar-nav {
  display: flex;
  align-items: center;
}
.nav-link.active {
  background-color: #007bff !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 0.375rem 0.75rem !important;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.navbar-items {
  display: flex;
  margin-left: auto;
  align-items: center;
}
.nav-item {
  margin-left: 15px;
  margin-right: 15px;
}
.nav-link {
  font-size: 1rem;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0;
}
.monospace-table {
  font-family: Consolas, monospace;
  font-size: 12px;
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/background.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}
footer {
  background-color: var(--bg-color-light);
  color: var(--text-color-light);
}
h1.display-4 {
  font-weight: 700;
}
p.lead {
  font-size: 1.25rem;
}
p.Main {
  font-size: .75rem;
}
@media (max-width: 768px) {
  body {
    background-position: top;
    background-attachment: scroll;
  }
}
modal-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.js-required {
  display: none;
}
#adminLoginModal {
  display: none;
  z-index: 1050;
  justify-content: center;
  align-items: center;
}
#adminLoginModal .modal-dialog{
  max-width: 450px;
}
#adminLoginModal .modal-content {
  max-width: 450px;
}
#bugDetailsModal {
  display: none;
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1050;
}
#bugDetailsModal .modal-dialog {
  max-width: 650px;
}
#bugDetailsModal .modal-content{
  text-align: left;
  max-width: 650px;
}
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 90%;
  margin: auto;
}
#newBugModal .modal-dialog {
  max-width: 850px;
}
#newBugModal .modal-content {
  width: 850px;
}
.close-btn {
  float: right;
  font-size: 20px;
  cursor: pointer;
}
.modal-backdrop {
  z-index: 1049 !important;
}