/* ------------GLOBAL STYLES------------ */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;

}

html {
  font-family: sans-serif;
  line-height: 1.15;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* Stack elements vertically */
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  /*background-color: #1d2328;*/
  background-color: #0B0C10; /* Dark background */
  color: #C5C6C7; /* Light text */
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  min-height: 100vh;

}

footer {
  background-color: #1F2833;
  color: #C5C6C7;
  text-align: center;
  box-shadow: 10px 10px 15px rgb(0 0 0 / 5%);
  min-height: 70px;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0 24px;
  margin-top: 10px;
  width: 100%;
}

h1 {
  text-align: center;
  margin: 10px;
}

h2 {
  margin: auto;
  font-size: 30px;
}
/* Headings */
h1, h2, h4 {
  color: #00b6ff;
}

.section-title {
  /*background-color:rgba(15, 16, 19, 0.95);*/
  color: #5e72e4;
  text-align: center;
  font-size: 30px;
}

ul {
  list-style-type: none;
  list-style-position: inside;
  padding-left: 2em;
}

main {
  width: auto;

}
/**Stupid ugly autofill be gone**/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #2a2e34 inset !important;
    -webkit-text-fill-color: #fff !important;
}

/*------------HEADER/HAMBURGER STYLES------------*/
header {
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.05);
}

header, .navbar, .navMenu {
  background-color: #1F2833; /* Secondary background */
}
.headerNameH2{
  margin-right: 20px;
  color:#C5C6C7;
}

.section-title {
  /*background-color:rgba(15, 16, 19, 0.95);*/
  color: #5e72e4;
  text-align: center;
  font-size: 30px;
}

ul {
  list-style-type: none;
  list-style-position: inside;
  padding-left: 2em;
}

main {
  width: 80%;

}

aside {
  width: 20%;
  background-color: #0B0C10; /* Secondary background */
  box-shadow: 0 4px 8px rgb(48 66 133 / 50%);
  height: fit-content;
  padding: 10px;
}

.pageContainer {
  display: flex;
}

.asideListDiv {
  width: 100%;
  padding-left: 0;
}

.asideList {
  list-style: none;
  text-align: center;
  margin-left: 15%;
  background: #4d555a;
  padding-left: 0;
  border-top: 0.3rem solid #6b6666;
  border-bottom: 0.3rem solid #6b6666;
}

.asideListItem {
  border-bottom: 0.1rem solid #000000;
}

a {
  color: #5e72e4;
  text-decoration: none;
  background-color: transparent;
  display: contents;
}

li a {
  text-align: center;
}

.navbar {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.navMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  z-index: 12;
}

.navBrand {
  font-size: 2rem;
}

.navLink {
  transition: 0.7s ease;
}
.navLink:hover, .navBrand:hover {
  color: #66FCF1; /* Highlight color */
}
.navLink, .navBrand {
  color: #C5C6C7; /* Light text for nav links */
}
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

@media (max-width: 100000px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navMenu {
    position: fixed;
    left: 100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: rgba(10, 13, 18, 0.95);
    width: 10%;
    text-align: center;
    transition: 0.3s;
  }

  .navItem {
    margin: 16px 0;
  }

  .navMenu.active {
    left: 90%;
    box-shadow: 10px 10px 15px rgba(10, 13, 18, 0.95);
    border-radius: 2px;
  }
}


.container-fluid {
  width: 100%;
  padding-right: 46px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.container-fluid-two {
  width: 100%;
  padding-right: 46px;
  padding-left: 46px;
  margin-right: auto;
  margin-left: auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

.buttonContainerMain {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 0.25rem !important;
}

.asideListLink {
  color: #C5C6C7;
  text-decoration: none;
}

.asideListLink:hover {
  color: #66FCF1;
}

/* Buttons and Links */
.buttonContainerMain, .asideListLink {
  background-color: #0B0C10; /* Button background */
  color: #0B0C10; /* Text inside buttons */
  border: none;
}

.buttonContainerShort {
  flex: 0 0 25%;
  max-width: 25%;
}

.buttonContainerLong {
  max-width: 100%;
}

.text-decoration-none {
  text-decoration: none !important;
}

.cat-item {
  background: linear-gradient(90deg, rgb(151 145 155) 0%, rgb(95 95 123) 35%, rgb(88 89 155) 100%);
  transition: .5s;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

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

.d-flex {
  display: flex !important;
}

element.style {
  width: 200px;
  height: 200px;
}

.overflow-hidden {
  overflow: hidden !important;
}

div {
  display: block;
}

.dash-box-content{
  padding-left: 1rem !important;
  color: #000000;
  flex: 1 1 auto !important;
}
.dash-smallbox-container{
  padding-bottom: 1rem !important;
  padding-left: 3rem !important;
}
.dash-box-content h4 {
  color: #00b6ff;; /* Highlighted titles */
}
.dash-box-content small {
  color: #C5C6C7; /* Descriptive text */
}
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #FFD333;
  --secondary: #F5F5F5;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #FFFFFF;
  --dark: #3D464D;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Roboto", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.logan-verse {
  flex-direction: column;
  padding-left: 3 rem !important;
  padding-right: 3 rem !important;
}

.premiumBoxes {
  flex-direction: column;
  padding-left: 3 rem !important;
  padding-right: 3 rem !important;
}

.boxes-container {
  display: flex;
  width: auto;
  justify-content: center;
  align-content: space-between;
}

.selection-pane {
  padding: 20px;
}

.img-pane {
  width: 100%;
  height: 100%;
}

.pane-text {
  position: absolute;
  top: 50%;
  left: 50%;
  /*--transform: translate(-50%,-50%);--*/
}

.game-container {
  text-align: center;
  margin: auto;
  padding-left: 5%;
  padding-right: 5%;

}

.game-container-item {
  margin: auto;
}

.displayText {
  border-style: solid;
  border-color: rgba(15, 16, 19, 0.95);
  color: #5e72e4;
  width: 100%;
}

.displayInfo {
  padding-bottom: 10px;
}

.column {
  float: left;
  width: 33.33%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.text-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.colHead {
  padding-right: 2px;
  border-bottom: double;
}

tr {
  padding-bottom: 2px;

}

.button-container {
  display: flex;
}

.kmsbox {
  justify-content: center;
}

.eftTable {
  overflow: auto;
}

.eftTableContainer {
  width: 80%;
}

.eftTable td {
  /* Other cell styles */
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pagination {
  margin-top: 10px;
}

td .notes {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.buildingsSelectContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.notSelectedBuildings,
.selectedBuildings {
  display: grid;
}

.notSelectedBuildings {
  margin-right: 20px;
  /* add right margin to the first div */
}

.selectedBuildings {
  margin-left: 20px;
  /* add left margin to the second div */
}

.btn,
.btn-large {
  text-decoration: none;
  color: #fff;
  background-color: #26a69a;
  text-align: center;
  letter-spacing: .5px;
  transition: .2s ease-out;
  cursor: pointer;
}

.btn,
.btn-large,
.btn-flat {
  border: none;
  border-radius: 2px;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  outline: 0;
  padding: 0 2rem;
  text-transform: uppercase;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
}

.collapsible-header {
  display: block;
  cursor: pointer;
  min-height: 3rem;
  line-height: 3rem;
  padding: 0 1rem;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.collapsible-body {
  display: none;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}

.collapsible-body p {
  margin: 0;
  padding: 2rem;
}

.singleBuildingContainer {
  display: flex;
  /* Use flexbox for the container */
  justify-content: space-between;
  /* Place one box to the left and the other to the right */
  align-items: flex-start;
  /* Align the boxes to the top */
}

.singleButtonsDiv {
  width: 20%;
  /* Set the width of the buttons container */
  margin-right: 10px;
  /* Optional: Adds some space between the two boxes */
}

.singleBuildingButton {
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width of the parent container */
  margin-bottom: 5px;
  /* Space between buttons */
  padding: 5px;
  /* Inner spacing */
  box-sizing: border-box;
  /* Include padding in width calculation */
}

.singleBuildingInformation {
  width: 35%;
  margin-left: 10px;
  text-align: center;
  border: double;
  border-color: cornflowerblue;
}

.singleOutputDiv {
  flex-grow: 1;
  /* Take remaining space after the buttons div */
  padding: 10px;
  /* Inner spacing */
  box-sizing: border-box;
  /* Include padding in width calculation */
  text-align: center;
  border: double;
  border-color: cornflowerblue;
  color: aquamarine;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-icon {
  /*background-color: black;
  color: white;*/
  border-radius: 50%;
  padding: 5px;
  text-align: center;
  width: 20px;
  height: 20px;
  display: inline-block;
  font-size: 14px;
  cursor: help;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.5s;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
