.pokeball_logo {
  padding-top: 4px;
  padding-left: 8px;
  padding-right: 16px;
}

.header_search_field {
  margin-top: 20px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.459);
  border-radius: 999px;
  padding: 6px 0px;
  width: 100%;
  max-width: 300px;
  position: relative;
  box-sizing: border-box;
  height: 40px;
}

.header_search_field input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 12px;
  flex: 1;
  padding: 0 6px;
}

.header_search_field input::placeholder {
  color: white;
  opacity: 0.7;
  font-weight: 300;
}

.clear-button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0 6px;
  line-height: 1;
}

.loadmore_btn_section {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.loadmore_btn {
  color: white;
  background-color: black;
  border: 2px solid #b88cda;
  padding: 16px 24px 16px 24px;
  width: 300px;
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;
}

.loadmore_btn:hover {
  background-color: #b88cda;
  color: black;
  border: 2px solid black;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader img {
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.close_icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.arrow-disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

.tab {
  cursor: pointer;
  background: none;
  border: none;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 20px;
  color: white;
  opacity: 0.6;
}

.tab.active {
  opacity: 1;
  border-bottom: 2px solid white;
}

.tab-content {
  display: none;
  margin-top: 1em;
}

.tab-content.active {
  display: block;
}

.tabs {
  margin-top: 24px;
}

.stat-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.stat-name {
  width: 160px;
  color: white;
  text-transform: none;
  text-align: start;
}

.stat-value {
  width: 40px;
  text-align: right;
  margin-right: 10px;
  color: #fff;
}

.stat-bars {
  display: flex;
  gap: 2px;
}

.stat-bar {
  width: 10px;
  height: 16px;
  background-color: #444;
  border-radius: 2px;
}

.stat-bar.filled {
  background-color: #b88cda;
}

.about-grid {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  justify-content: space-between;
}

.about-box {
  flex: 1;
  background: linear-gradient(90deg, #1a1a1a 0%, #5a5a5a 100%);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  color: white;
}

.about-box-wide {
  background: linear-gradient(90deg, #1a1a1a 0%, #5a5a5a 100%);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  color: white;
}

.about-value {
  font-weight: bold;
  font-size: 16px;
}

.about-label {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}

.notFound_pikachu {
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
  align-items: center;
}

.notFound_pikachu img{
  max-width: 200px;
}

.notFound_text{
  text-align: center;
}
