body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d0705;
	overflow: scroll;
	overflow-x: hidden;
  }
  ::-webkit-scrollbar {
    width: 0; 
    background: transparent;
  }
  .container {
    display: flex;
    position: relative;
  }
  .thumbnails {
    width: 25vw;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(7vw, 1fr));
    gap: 0.5vw;
    margin-left: 25vw;
    margin-top: 6.9vh;
  }
  .thumbnail {
    width: 100%;
    height: auto;
  }
  .full-image-container {
    position: sticky;
    top: 3vh;
    right: 1vw;
    height: 95vh;
  }
  #full-image {
    height: 79vh;
    width: auto;
    position: fixed;
    top: calc(0.5vh + 3.4vw);
    left: 50.5vw;

  }
  #hidden-pokemon {
    position: fixed;
    top: 0vh;
    left: 52vw;
    font-size: 3vw;
    color: #ffffff;
	display: none;
  }


  #toggle-tally,
  #toggle-sound,
  #toggle-brian,
  #toggle-amy,
  #toggle-official,
  #options-toggle,
  #toggle-random,
  #toggle-stats{
   position: fixed;
   top: 3vh;
   right: 1vw;
  }

  #toggle-tally,
  #toggle-sound,
  #toggle-brian,
  #toggle-amy,
  #toggle-official,
  #toggle-random,
  #options-checkbox,
  #reset-btn,
  #toggle-stats,
  #image-indicator{
    display: none;
  }

	#options-label {
	  display: inline-block;
	  width: 1.7vh;
	  height: 0.85vh;
	  background-color: #555;
	  border-radius: 1vh;
	  position: relative;
	  cursor: pointer;
	}

	#options-handle {
	  width: 0.85vh;
	  height: 0.85vh;
	  background-color: white;
	  border-radius: 1vh;
	  position: absolute;
	  top: 0;
	  left: 0;
	  transition: transform 0.3s ease;
	}

	#options-checkbox:checked + #options-label #options-handle {
	  transform: translateX(100%);
	  background-color: #ab1146;
	}
	
  #tally-text {
    display: none;
    position: fixed;
    top: 5.6vh;
    right: 2vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
  }
   #sound-text {
    display: none;
    position: fixed;
    top: 8.6vh;
    right: 2vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
  }
   #brian-text {
    display: none;
    position: fixed;
    top: 11.6vh;
    right: 2vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
  }
   #amy-text {
    display: none;
    position: fixed;
    top: 14.6vh;
    right: 2vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
  }
   #official-text {
    display: none;
    position: fixed;
    top: 17.6vh;
    right: 2vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
  }
   #random-text {
    display: none;
    position: fixed;
    top: 20.6vh;
    right: 2vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
  }
   #stat-text {
    display: none;
    position: fixed;
    top: 23.6vh;
    right: 2vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
  }
  
  
  #tally {
    position: fixed;
    top: 0vh;
    right: 1vw;
    font-size: 1vw;
    display: none;
    background-color: black;
    color: white;
  }
  #tally-input {
    width: 5vw;
    text-align: center;
    font-size: 1vw;
    background-color: black;
    border: none;
    color: white;
  }
  #toggle-tally {
    position: fixed;
    top: 6vh;
    right: 1vw;
  }
  #toggle-checkbox {
    display: none;
  }
  #toggle-label {
    display: inline-block;
    width: 1.7vh;
    height: 0.85vh;
    background-color: #555;
    border-radius: 1vh;
    position: relative;
    cursor: pointer;
  }
  #toggle-handle {
    width: 0.85vh;
    height: 0.85vh;
    background-color: white;
    border-radius: 1vh;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
  }
  #toggle-checkbox:checked + #toggle-label #toggle-handle {
    transform: translateX(100%);
	background-color: #8acd68;
  }

  #toggle-sound {
    position: fixed;
    top: 9vh;
    right: 1vw;
  }
  #toggle-sound-checkbox {
    display: none;
  }
  #toggle-sound-label {
    display: inline-block;
    width: 1.7vh;
    height: 0.85vh;
    background-color: #555;
    border-radius: 1vh;
    position: relative;
    cursor: pointer;
  }
  #toggle-sound-handle {
    width: 0.85vh;
    height: 0.85vh;
    background-color: white;
    border-radius: 1vh;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
  }
  #toggle-sound-checkbox:checked + #toggle-sound-label #toggle-sound-handle {
    transform: translateX(100%);
	background-color: #8acd68;
  }
  #toggle-official {
    position: fixed;
    top: 18vh;
    right: 1vw;
  }
  #toggle-official-checkbox {
    display: none;
  }
  #toggle-official-label {
    display: inline-block;
    width: 1.7vh;
    height: 0.85vh;
    background-color: #555;
    border-radius: 1vh;
    position: relative;
    cursor: pointer;
  }
  #toggle-official-handle {
    width: 0.85vh;
    height: 0.85vh;
    background-color: white;
    border-radius: 1vh;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
  }
  #toggle-official-checkbox:checked + #toggle-official-label #toggle-official-handle {
    transform: translateX(100%);
	background-color: #8acd68;
  }
  #toggle-brian {
    position: fixed;
    top: 12vh;
    right: 1vw;
  }
  #toggle-brian-checkbox {
    display: none;
  }
  #toggle-brian-label {
    display: inline-block;
    width: 1.7vh;
    height: 0.85vh;
    background-color: #555;
    border-radius: 1vh;
    position: relative;
    cursor: pointer;
  }
  #toggle-brian-handle {
    width: 0.85vh;
    height: 0.85vh;
    background-color: white;
    border-radius: 1vh;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
  }
  #toggle-brian-checkbox:checked + #toggle-brian-label #toggle-brian-handle {
    transform: translateX(100%);
	background-color: #8acd68;
  }


  #toggle-amy {
    position: fixed;
    top: 15vh;
    right: 1vw;
  }
  #toggle-amy-checkbox {
    display: none;
  }
  #toggle-amy-label {
    display: inline-block;
    width: 1.7vh;
    height: 0.85vh;
    background-color: #555;
    border-radius: 1vh;
    position: relative;
    cursor: pointer;
  }
  #toggle-amy-handle {
    width: 0.85vh;
    height: 0.85vh;
    background-color: white;
    border-radius: 1vh;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
  }
  #toggle-amy-checkbox:checked + #toggle-amy-label #toggle-amy-handle {
    transform: translateX(100%);
	background-color: #8acd68;
  }
  
  #details {
    position: fixed;
    bottom: 1vh;
    left: 51vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
  }

  #generation {
    position: fixed;
    bottom: calc(1vh + 2vw);
    left: 51vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
  }
  #pokedex {
    position: fixed;
    bottom: calc(1vh + 3vw);
    left: 51vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
  }

  #gallery-input {
    position: fixed;
    bottom: calc(1vh + 2.95vw);
    left: calc(51vw + 4.88vw);
    width: 2.5vw;
    color: #ab1146;
    background-color: transparent;
    border: none;
    text-align: left;
    font-weight: bold;
    font-size: 0.9vw;
  }
  
 #gallery-input::placeholder {
  color: #ab1146;
  font-size: 0.9vw;
  }
#reveal-btn {
  position: fixed;
  top: 1vh;
  left: 38vw;
  background-color: #ab1146;
  color: white;
  cursor: pointer;
  padding: 0.5vh 1vw;
  border: none;
  border-radius: 0.56vw;
  font-size: 0.9vw;
  font-weight: bold;
}

#correct-btn {
  position: fixed;
  top: 1vh;
  left: 38vw;
  cursor: pointer;
  font-size: 0.9vw;
  font-weight: bold;
  border-radius: 0.56vw;
  padding: 0.5vh 1vw;
}


#incorrect-btn {
  position: fixed;
  top: 1vh;
  left: calc(38vw + 5.5vw);
  cursor: pointer;
  font-size: 0.9vw;
  font-weight: bold;
  border-radius: 0.56vw;
  padding: 0.5vh 1vw;
}


#correct-btn:hover {
  background-color: #8acd68;
}

#incorrect-btn:hover {
  background-color: #ab1146;
  color: white;
}

#reset-btn {
  position: fixed;
  top: 47vh;
  right: 1vw;
  cursor: pointer;
  font-size: 0.9vw;
  font-weight: bold;
  border-radius: 0.56vw;
  padding: 0.5vh 1vw;
}
#reset-btn:hover {
  background-color: #ab1146;
}

  #toggle-stats {
    position: fixed;
    top: 24vh;
    right: 1vw;
  }
  #toggle-stats-checkbox {
    display: none;
  }
  #toggle-stats-label {
    display: inline-block;
    width: 1.7vh;
    height: 0.85vh;
    background-color: #555;
    border-radius: 1vh;
    position: relative;
    cursor: pointer;
  }
  #toggle-stats-handle {
    width: 0.85vh;
    height: 0.85vh;
    background-color: white;
    border-radius: 1vh;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
  }
  #toggle-stats-checkbox:checked + #toggle-stats-label #toggle-stats-handle {
    transform: translateX(100%);
	background-color: #8acd68;
  }

#save-btn {
  position: fixed;
  top: 27vh;
  right: 1vw;
  cursor: pointer;
  font-size: 0.9vw;
  font-weight: bold;
  border-radius: 0.56vw;
  padding: 0.5vh 1vw;
}
#save-btn:hover {
  background-color: #8acd68;
}
.blur-remove-btn {
  position: fixed;
  bottom: calc(2vh + 1.11vw);
  left: calc(52vw + 17.67vw);
  background-color: #ab1146;
  padding: 0.5vh 1vw;
  color: white;
  border: none;
  border-radius: 0.56vw;
  cursor: pointer;
  font-size: 0.9vw;
}

.blurred {
  filter: blur(1vw);
}

#text-to-speech-brian-btn {
  position: fixed;
  top: 1vh;
  left: calc(25vw + 4.2vw);
  cursor: pointer;
  font-size: 0.9vw;
  font-weight: bold;
  border-radius: 0.56vw;
  padding: 0.5vh 1vw;
  display: none;
}

#text-to-speech-amy-btn {
  position: fixed;
  top: 1vh;
  left: 25vw;
  cursor: pointer;
  font-size: 0.9vw;
  font-weight: bold;
  border-radius: 0.56vw;
  padding: 0.5vh 1vw;
  display: none;
}

#text-to-speech-brian-btn:hover {
  background-color: #ab1146;
  color: white;
}
#text-to-speech-amy-btn:hover {
  background-color: #ab1146;
  color: white;
}
#official-image {
  position: fixed;
  top: 5vh;
  right: 1vw;
  display: none;
  width: 20vw;
  height: auto;
  margin-top: 1rem;
  margin-left: 1rem;
}

#image-indicators {
  position: fixed;
  top: 47vh; /* Adjust as needed */
  right: 9vw;
  display: none;
}

.indicators-container {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.dot {
    height: 10px; /* Adjust size as needed */
    width: 10px; /* Adjust size as needed */
    background-color: #888; /* Grey color */
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px; /* Adjust spacing between dots */
}

.active-dot {
    background-color: #fff; /* White color */
}

#toggle-random {
  position: fixed;
  top: 21vh;
  right: 1vw;
}

#toggle-random-checkbox {
  display: none;
}

#toggle-random-label {
  display: inline-block;
  width: 1.7vh;
  height: 0.85vh;
  background-color: #555;
  border-radius: 1vh;
  position: relative;
  cursor: pointer;
}

#toggle-random-handle {
  width: 0.85vh;
  height: 0.85vh;
  background-color: white;
  border-radius: 1vh;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

#toggle-random-checkbox:checked + #toggle-random-label #toggle-random-handle {
  transform: translateX(100%);
  background-color: #8acd68;
}

#file-input {
  display: none;
}

.custom-file-button {
  display: none;
  position: fixed;
  top: 32vh;
  right: 1vw;
  cursor: pointer;
  font-size: 0.9vw;
  font-weight: bold;
  border: none;
  border-radius: 0.56vw;
  padding: 0.5vh 1vw;
  color: black;
}

.custom-file-button:hover {
  background-color: #ab1146;
}

.file-input-container {
  display: inline-block;
}

.stats-text {
    position: fixed;
    display: none;
    top: 1.5vh;
    left: 1vw;
    font-size: 0.9vw;
    color: #ab1146;
    text-align: left;
    font-weight: bold;
}
