* {
  margin: 0;
  padding: 0;
  font-family: "Roboto Mono", monospace;
  font-style: normal;
  background: black;
  
}


header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0));
  z-index: 1000;
  padding: 1rem 2rem;
}


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



.nav-links {
  display: flex;
  gap: .3rem;
}

.nav-links .nav-link {
  color: #ffffff;
  font-size: .77rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links .nav-link:hover {
  background: rgba(0, 72, 98, 0.63);
  color:rgb(170, 212, 255);
}

.navIcon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  transition: filter 0.3s ease;
  background: transparent;
}


.one {
  width: 15px;

}

  .custom-header:hover{
    cursor: pointer;
    color:rgb(160, 230, 255) !important;
    text-shadow: 0 0 5px rgba(43, 255, 244, 0.7);

  }

.hamburger {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  z-index: 2001;
}

.hamburger-icon,
.close-icon {
  display: none;
}

.hamburger .hamburger-icon {
  display: inline;
}

.hamburger.active .hamburger-icon {
  display: none;
}

.hamburger.active .close-icon {
  display: inline;
}

.nav-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}



@media (min-width: 640px) {
  .search-row {
    flex-direction: row;
  }
}

.search-input {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #444;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.11), rgba(0, 0, 0, 0.01));
  color: #fff;
  border-radius: 5px;
}

.search-button {
  padding: 10px 16px;
  border: 1px solid rgb(0, 170, 255);
  background-color: transparent;
  color: rgb(0, 166, 255);
  border-radius: 5px;
  cursor: pointer;
}

.search-button:hover {
  background-color: rgba(43, 255, 244, 0.7);
  color: #000;
}

.field-toggle {
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 15px;
}

.toggle-label {
  font-size: 0.9em;
  opacity: 0.8;
}

.field-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.field-button .icon {
  display: none;
  margin-left: 5px;
}

.field-count {
  font-size: 0.8em;
  opacity: 0.7;
  margin-left: 10px;
}




@media (max-width: 600px) {
  .title {
    font-size: .5em !important;
    text-align: center;
  }

  .subtitle {
    font-size: 0.6em;
    text-align: center;
  }

  .search-container {
    padding: 5px;
    max-width: 100%;
  }

  .search-row {
    flex-direction: column;
    gap: 8px;
  }

  .search-input,
  .search-button {
    width: 100%;
    font-size: .6em;
  }

  .field-buttons {
    flex-direction: row;
    align-items: stretch;
  }

  .field-button {
    font-size: .6em;
    padding: 3px;
    width: 30%;
  }

  .stack span {
    font-size: .9rem;
  }

  #loading-indicator{
    font-size: 7px;
  }

  #initial-message {
    font-size: 9px;
  }

  .toggle-label {
    font-size: 9px;
  }

 .hamburger {
  position: fixed; 
  right: 1.5rem;
  top: .3rem;
  z-index: 3000; 
}

.close-icon {
  font-size: 2rem;
  color: white;
}

  .hamburger {
    display: block;
  }

  .hamburger-icon,
.close-icon {
  display: none;
}

.hamburger .hamburger-icon {
  display: inline;
}

.hamburger.active .hamburger-icon {
  display: none;
}

.hamburger.active .close-icon {
  display: inline;
}


  .nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: black;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .1rem;
    display: none;
    z-index: 2000;
    padding-top: 3rem;
  }

  .nav-wrapper.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: .1rem;
  }

  .nav-links .nav-link {
    padding: .5rem 1rem;
    font-size: 1.2rem;
    color: white;
  }

}
