#page_head {
  display: flex;
  background-color: rgb(250, 203, 0);
  color: rgb(62, 96, 173);
  min-height: 6rem;
  box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.5) inset;
}

header img {
  max-height: 4.5rem;
}

#header_content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header_back_link {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: rgb(62, 96, 173);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  padding-right: 1rem;
}

.back_arrow {
  font-size: 1.8rem;
  font-weight: 900;
}

.header_back_link:hover {
  color: rgb(45, 70, 125);
}

#page_content {
  background-color: rgb(250, 235, 215);
  display: flex;
  flex: 1;
  overflow-y: auto;
  box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.5) inset;
}

#main_content_container {
  display: flex;
  flex-direction: column;
}

#page_footer {
  display: flex;
  background-color: rgb(250, 203, 0);
  color: rgb(62, 96, 173);
  align-items: center;
  font-weight: 600;
  min-height: 6rem;
  box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.5) inset;
}

#footer_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer_links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.footer_links a {
  color: rgb(62, 96, 173);
}

.footer_links a:hover {
  color: rgb(45, 70, 125);
}

#pokesearch_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
}

#pokesearch_title_img {
  max-height: 6rem;
  max-width: 100%;
}

.search_btn {
  height: 1.7rem;
  font-weight: 600;
  background-color: rgb(62, 96, 173);
  color: rgb(250, 203, 0);
  box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.5) inset;
  border-radius: 0.3rem;
  cursor: pointer;
}

.search_btn:hover {
  background-color: rgb(45, 70, 125);
  transform: scale(1.05);
}

#load_btn {
  display: flex;
  margin: 1rem auto;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: rgb(62, 96, 173);
  color: rgb(250, 203, 0);
  border: none;
  border-radius: 8px;
  box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.5) inset;
  cursor: pointer;
  transition: background 0.2s;
}

#load_btn:hover {
  background-color: rgb(45, 70, 125);
  transform: scale(1.05);
}

#load_btn:disabled {
  background-color: rgb(204, 204, 204);
  cursor: not-allowed;
}
