/* Main-Tab_Content: */
.kv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 0.063rem solid rgb(221, 221, 221);
  font-size: 0.95rem;
}

.kv span:first-child {
  align-self: start;
  font-weight: 600;
  color: #333;
}

.kv span:last-child {
  color: #222;
  text-align: right;
}

.kv:last-child {
  border-bottom: none;
}

.kv + .kv {
  margin-top: 0.2rem;
}

.location_list {
  list-style: none;
  padding: 1.2rem 0;
  margin: 0.3rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.4rem;
}

.location_list li {
  background: rgb(240, 240, 240);
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-size: 0.85rem;
  box-shadow: 0 0.063rem 0.188rem rgba(0, 0, 0, 0.15);
}

/* Status-Tab-Content: */
.bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.bar_label {
  flex: 0 0 11rem;
  font-weight: 600;
  text-transform: capitalize;
}

.bar_track {
  width: 100%;
  height: 1.8rem;
  background: rgb(224, 224, 224);
  border-radius: 0.4rem;
  position: relative;
  box-shadow: inset 0 0.063rem 0.125rem rgba(0, 0, 0, 0.2);
}

.bar_track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgb(60, 77, 145), rgb(42, 51, 104));
  color: rgb(255, 255, 255);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8rem;
  transition: width 0.3s ease;
  white-space: nowrap;
  border-radius: 0.4rem 0 0 0.4rem;
}

/* Abilities-Tab-Content: */
.ability_card {
  background: rgb(248, 248, 248);
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: 0.063rem solid rgb(204, 204, 204);
  margin-bottom: 0.6rem;
  box-shadow: 0 0.063rem 0.188rem rgba(0, 0, 0, 0.1);
}

.ability_card h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: rgb(42, 42, 42);
}

.ability_card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgb(51, 51, 51);
  line-height: 1.3;
}


/* Evo-Tab-Content: */
.evo_chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
  gap: 0.2rem;
  animation: evoFadeIn 0.6s ease;
}

@keyframes evoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.evo_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8rem;
  padding: 0.3rem 0.5rem;
  background: linear-gradient(145deg, rgb(242, 242, 242), rgb(224, 224, 224));
  border: 0.125rem solid rgb(189, 189, 189);
  border-radius: 0.625rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
  text-transform: capitalize;
}

.evo_card:hover {
  transform: scale(1.01);
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.35);
  background: linear-gradient(145deg, #e8e8e8, #f6f6f6);
}

.evo_img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 255, 255);
  border-radius: 0.5rem;
  padding: 0.3rem;
  box-shadow: inset 0 0.063rem 0.125rem rgba(0, 0, 0, 0.15);
}

.evo_img img {
  max-width: 95%;
  height: auto;
  display: block;
}

.evo_label {
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: #222;
  margin-top: 0.3rem;
}

.evo_arrow {
  font-size: 1.2rem;
  color: #555;
}