@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

body,
html {
  font-family: "Bebas Neue", sans-serif;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #292929;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  position: relative;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  background-color: #f1f1f1;
  width: 2000px;
  padding: 20px;
  transition: opacity 0.3s ease;
}

.expand-button {
  font-size: 200%;
  font-weight: 1px;
  letter-spacing: 5px;
  background-color: transparent;
  border: solid 5px;
  color: white;
  padding: 14px 20px;
  cursor: pointer;
  transition: transform 1s, width 3s ease;
}

.expand-button:hover {
  background-color: green;
}

.expand-button.expanded {
  width: 0;
  padding: 14px 0;
  transition: ease-in-out 2s;
}

.apply-button {
  color: #ffffff;
  background-color: #000000;
  border: none;
}

.apply-button:hover {
  color: white;
  background-color: green;
  border: none;
}
.modal {
  text-align: center;
  padding: 0!important;
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.show {
  opacity: 1;
  transform: scale(1);
}
.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.run-button {
  background-color: #4bbe03;
  color: white;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
}

.reset-button {
  background-color: #be0308;
  color: white;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
}

.sweep-button {
  background-color: #be0308;
  color: white;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
}

.faq-button {
  color: #e9e9e9;
  background-color: #be0308;
  border: none;
  justify-content: center;
  align-items: center;
}

.faq-button:hover {
  color: #e9e9e9;
  background-color: black;
  border: none;
}
.hamburger {
  border: 0;
  background-color: rgb(0, 0, 0);
  cursor: pointer;
  position: relative;
  margin-left: auto;
  overflow: visible;
  z-index: 2;
}

.hamburger .line {
  background-color: #ffffff;
  border: #000000 1px;
  display: block;
  margin: 5px 0;
  height: 2px;
  width: 30px;
  transition: all 0.1s ease-in;
}

.hamburger.open .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.run-button:hover {
  background-color: #145901;
  color: white;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
}
.reset-button:hover {
  background-color: #7e0004;
  color: white;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
}

.sweep-button:hover {
  background-color: #007095;
}

.container-expanded {
  opacity: 1;
  max-height: 800px; /* Adjust the value to make it bigger */
  animation: expandContainer 5s ease-out-out;
}

.expand-button-hidden {
  display: none;
}

.output-container {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  background-color: #e9e9e9;
  padding: 16px;
  margin-top: 16px;
  display: block;
  overflow-y: auto;
  height: 500px; /* Adjust the value as needed */
}

.output-container.show {
  display: block;
}

@keyframes expandContainer {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 400px;
  } /* Adjust the value to match the expanded container's max-height */
  animation-timing-function: ease-in-out 2s;
  -webkit-animation-timing-function: ease-in-out 2s;
}

.container .button-group {
  font-size: 125%;
  word-spacing: 2px;
  display: flex;
  justify-content: left;
  margin-bottom: 10px;
  position: relative;
}

.container .button-group .button {
  flex-basis: 50%;
}

.container .options {
  font-size: 20px;
  letter-spacing: 1px;
  display: flex;
  justify-content: right;
  position: absolute;
  margin-top: 0px;
  top: 0px;
  right: 0;
  width: 45%;
  height: 100%;
  background-color: #595959;
  padding: 10px;
  padding-left: 10px;
  opacity: 50;
  overflow: hidden;
  transform: translateX(100%);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.container .options.open {
  display: block;
  opacity: 1;
  transform: translateX(0%);
  z-index: 1;
}

.option {
  margin-bottom: 10px;
}

.option label {
  color: #fff;
}

.option input {
  margin: 20px 10px 20px auto;
  width: 20%;
}

.option button {
  margin-top: 5px;
}
