.pokemon-card {
  width: 30%;
  max-height: calc(100vh - 350px);
  aspect-ratio: 1 / 1;
  align-items: center;
  border: 2px solid black;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 24px;
  background-color: rgb(35, 79, 135);
  cursor: pointer;
}

.pokemon-card:hover {
    background-color: rgba(35, 79, 135, 0.8);
    transform: scale(1.05); 
    transition: all 0.3s ease;
  }

.pokemon-information h1 {
  font-size: 20px;
  text-align: center;
  color: white;
}

.pokemon-information span {
  font-size: 24px;
  text-align: center;
  color: white;
}

.pokemon-information {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.pokemon-img-container {
  display: flex;
  justify-content: center;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

.pokemon-main-img {
  height: 20%;
  width: 50%;
  aspect-ratio: 1/1;
  margin: 8px 0;
  padding: 5px;
  cursor: pointer;
  object-fit: cover;
}

.pokemon-type {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pokemon-type img {
  display: flex;
  justify-content: center;
  max-height: 50px;
  max-width: 50px;
  padding: 5px;
  gap: 8px;
  margin-bottom: 8px;
  border-radius: 20px;
}

.pokemon-overlay {
  display: flex;
  justify-content: center;
  margin: 10px;
}

.pokemon-card-overlay {
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;
  border-radius: 24px;
  background-color: rgb(35, 79, 135);
  color: white;
  border: 2px solid black;

}

.pokemon-img-overlay {
  display: flex;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

.pokemon-card-overlay h1,
.pokemon-card-overlay span {
  font-size: 28px;
}

.pokemon-img {
  display: flex;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  height: 40%;
  width: 50%;
 
}

.navigaton-arrow {
  height: 20px;
  cursor: pointer;
}

.pokemon-properties {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 2px solid black;
}

.pokemon-main-facts {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
}

.pokemon-main-facts h2 {
  text-decoration: underline;
  color: white;
}

.pokemon-main-facts span {
  font-size: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pokemon-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  gap: 40px;
  font-size: 24px;
  border-top: 2px solid black;
  color: white;
}

.pokemon-details h2 {
  cursor: pointer;
}

.pokemon-stats-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
}

.pokemon-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.progress {
  background-color: #95a6b7;
  border-radius: 12px;
  height: 20px;
  width: 100%;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  transition: width 0.6s ease;
}

.stat-name {
  width: 175px;
  color: white;
}
.stat-value {
  width: 50px;
  color: white;
}

.evo-chain-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 2px;
  text-transform: capitalize;
}

.evo-chain {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

.evo-chain-pokemon-img {
  height: 80px;
  width: 100%;
}
