.pokemonCardContainer {
    position: absolute;
    top: 0;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100vw;
    z-index: 400;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

#pokemonCard {
    width: 400px;
    height: 781px;
    border-radius: 40px;
    z-index: 1;
    margin-bottom: 32px;
}

.navIconsContainer {
    margin: 32px;
}

.navIconsContainer button {
    border: none;
    padding-block: 0;
    padding-inline: 0;
    padding: 10px;
}

.b-abled {
    background-color: rgba(253, 253, 253, 0.5);
    padding: 10px;
    border-radius: 40px;
}

.b-abled:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
}

#pokemonCardHeader {
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('data:image/svg+xml;utf8,<svg width="180" height="180" viewBox="0 0 150 100" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="100" r="100" fill="none"/><circle cx="100" cy="100" r="20" fill="rgba(253, 253, 253, 0.4)"/><circle cx="100" cy="100" r="44" fill="none" stroke="none"/><circle cx="100" cy="100" r="78" fill="none" stroke="rgba(253, 253, 253, 0.4)" stroke-width="40"/></svg>');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 260px;
}

#pokemonCardNav {
    height: 7%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-left: 40px;
    padding-right: 40px;
    color: white;
}

.pokemonCardIcon {
    width: 24px;
    padding: 4px;
    border-radius: 30px;
}

.pokemonCardIcon:hover {
    cursor: pointer;
    background-color: rgba(253, 253, 253, 0.4);
}

#pokemonCardHeadline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
}

#pokemonCardHeadline p {
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
}

#pokemonCardName {
    color: white;
    font-size: 32px;
    font-weight: 800;
}

#pokemonCardTypesContainer {
    display: flex;
    padding-left: 24px;
    gap: 16px;
}

.pokemonType {
    color: white;
    width: 80px;
    font-weight: 600;
    border-radius: 24px;
    padding-top: 4px;
    padding-bottom: 4px;
    background-color: rgba(253, 253, 253, 0.4);
    margin-bottom: 16px;
    text-align: center;
}

#pokemonCardImageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60%;
    width: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="140" height="180" viewBox="0 0 200 300" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="180" height="180" fill="none"/><circle cx="40" cy="40" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="80" cy="40" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="120" cy="40" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="160" cy="40" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="40" cy="80" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="80" cy="80" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="120" cy="80" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="160" cy="80" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="40" cy="120" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="80" cy="120" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="120" cy="120" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="160" cy="120" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="40" cy="160" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="80" cy="160" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="120" cy="160" r="2" fill="rgba(253, 253, 253, 0.4)"/><circle cx="160" cy="160" r="2" fill="rgba(253, 253, 253, 0.4)"/></svg>');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 140px;
}

#pokemonCardImage {
    height: 100%;
    transform: scaleX(-1);
}

#pokemonCardInfo {
    height: 60%;
    background-color: white;
    border-radius: 40px;
    margin-top: -20px;
    padding-top: 16px;
    padding-left: 24px;
    padding-right: 24px;
}

#pokemonCardInfoNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10%;
    padding-bottom: 16px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

#pokemonCardInfoNav a {
    text-decoration: none;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

#pokemonCardInfoNav a:hover {
    text-decoration: underline 3px rgb(58, 74, 177);
    text-underline-offset: 22px;
    color: rgba(0, 0, 0, 1);
}

#pokemonCardInfoContainer {
    margin-top: 16px;
    padding-bottom: 32px;
}

.customTable {
    border-collapse: collapse;
}

.customTable td {
    padding-top: 8px;
    padding-bottom: 8px;
}

.wideColumn {
    width: 150px;
    color: rgba(0, 0, 0, 0.3);
    font-size: 16px;
    font-weight: 500;
}

.secondColum {
    font-size: 16px;
    font-weight: 500;
}

#pokemonProgressBar {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 36px;
}

.statsName {
    width: 75px;
    color: rgba(0, 0, 0, 0.3);
    font-size: 16px;
    font-weight: 500;
}

.statsValue {
    width: 50px;
    font-weight: 600;
    text-align: center;
}

#progressBarContainer {
    width: 200px;
    height: 4px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

#progressBar {
    height: 100%;
    background-color: green;
    text-align: center;
    line-height: 30px;
    color: white;
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.flavorBox {
    width: 100%;
}

.flavorHeadline {
    font-weight: 600;
    margin-top: 8px;
}

.flavorText {
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

#pokemonEvolutionsContainer {
    max-height: 350px;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    overflow-y: scroll;
    padding-right: 4px;
}

.evolutinContainer {
    display: flex;
    align-items: center;
    height: 116px;
    width: 100%;
    padding: 0 4%;
    cursor: pointer;
}

.evolutinContainer:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.evolutinContainerLeft {
    justify-content: start;
    flex-direction: row-reverse;
}

.evolutinContainerRight {
    justify-content: end;
    flex-direction: row;
}

.evolutionHeadlineContainer {
    padding-left: 16px;
    padding-right: 16px;
}

.evolutionText {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.evolutinBild {
    width: 28%;
    height: 90%;
}

#pokemonMovesContainer {
    max-height: 350px;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    overflow-y: scroll;
}

.pokemonMoves {
    margin: 4px;
    padding-left: 8px;
    padding-right: 8px;
    border: 1px solid;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
}

.pokemonMoves:hover {
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: rgba(253, 253, 253, 0.5);
    cursor: pointer;
}

.a-scale-up {
    animation: scale-up-center 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}