.btn-moreLoad {
  font-size: large;
  padding: 25px;
  margin-bottom: 50px;
  margin-top: 25px;
  color: white;
  background-color: #e97b02;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
  overflow: hidden;
}

.btn-moreLoad:hover {
  transform: scale(1.05);
}

.close-btn {
  position: absolute;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: black;
  background-color: transparent;
  border: 2px solid black;
  border-radius: 10px;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.1s ease;
  overflow: hidden;
}

.close-btn:hover {
  transform: scale(1.25);
  box-shadow: 0px 0px 4px 6px rgba(0, 0, 0, 0.4);
}

.nav-btn {
  position: absolute;
  top: 92%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
  border: 2px solid black;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0px 0px 4px 6px rgba(0, 0, 0, 0.4);
}

#btn-prev {
  left: 10px;
}

#btn-next {
  right: 10px;
}

.searchPokemon-btn {
  width: 100px;
  height: 30px;
  font-size: large;
  color: white;
  background-color: #e97b02;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
  overflow: hidden;
}

.searchPokemon-btn:hover {
  transform: scale(1.05);
}
