.pokecard {
    position: relative;
    top: 10px;
    width: 100%;
    z-index: 2;
    font-size: 16px;
}

.pokecard-header {
    width: 100%;
    height: 290px;
    display: flex;
    flex-direction: column;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    background-color: grey;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.backbutton {
    font-size: 30px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    padding: 15px;
    padding-bottom: 18px;
    transition: all 100ms ease-in-out;
}

.backbutton:hover {
    transform: scale(1.1) translateX(-5px);
}

.backbutton:active {
    transform: scale(1);
}

.nametype-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.name {
    margin: 0px;
}

.type-card {
    border-radius: 10px;
    font-weight: bold;
    padding: 5px 16px;
    margin: 0px;
    width: 80px;
    text-align: center;
}

.integer-card {
    font-size: 20px;
    font-weight: bold;
}

.headcontrol {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.type-container {
    display: flex;
}

.type-container div {
    width: 70px;
    margin-right: 10px;
    text-align: center;
    padding: 5px 10px;
}

.backgroundBall {
    position: absolute;
    height: 130px;
    width: 130px;
    bottom: 10px;
    right: -10px;
    z-index: 1;
    opacity: 0.2;
    filter: drop-shadow(5px 5px 5px black);
}

.pokecard-content {
    position: relative;
    top: -20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 345px;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    color: rgb(68, 68, 68);
    font-weight: bold;
    font-size: 16px;
    letter-spacing: -1.2px;
}

.arrow-container {
    position: absolute;
    top: -80px;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.booth-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 40px;
    padding: 5px;
    cursor: pointer;
    transition: all 155ms ease-in-out;
    border-radius: 10px;
    opacity: 0.6;
}

.booth-arrow:hover {
    transform: scale(1.3);
    opacity: 1;
}

.img-container {
    position: absolute;
    top: -155px;
    right: 62px;
    margin: auto;
    margin: 0;
}

.cardimg {
    height: auto;
    width: 180px;
    filter: drop-shadow(-1px 3px 2px black);
}

.card-menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-inline-start: 0px;
    margin: 5px 0px;
    z-index: 4;
}

.navigation {
    cursor: pointer;
    border-radius: 10px;
    transition: all 155ms ease-in-out;
}

.menu-container {
    width: 100%;
    position: relative;
}

.table-card {
    width: 100%;
}

.breeding-headline {
    margin: 0;
    margin-bottom: 10px;
}

.tr-card {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    text-align: end;
    border-bottom: 2px solid lightgrey;
    padding: 5px 8px
}

.tr-card td:first-child {
    opacity: 0.7;
}

.navbar-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 8px;
}

.navbar {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: rgb(221, 221, 221);
}

.nav {
    position: relative;
    top: -3px;
    width: 20%;
    height: 3px;
    border-radius: 10px;
    background-color: grey;
    transform: translate(-112px);
    transition: all 255ms ease-in-out;
}

#statsContainer {
    display: flex;
    flex-direction: column;
}

.base-bar {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.base-bar:first-of-type {
    margin-top: 10px;
}

.background-bar {
    display: flex;
    width: 100%;
    border-radius: 5px;
    height: 12px;
    background-color: lightgrey;
}

.stat-name {
    width: 110px;
}

.stat {
    display: flex;
    justify-content: center;
    width: 80px;
    font-weight: bolder;
}

.anim-bar {
    width: 0;
    animation: growBar 0.4s ease-in-out forwards;
}

@keyframes growBar {
    from {
        width: 0;
    }
    to {
        width: var();
    }
}

.evochain {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 260px;
}

.dropdown {
    width: 25px;
    height: auto;
    margin: 0px 15px;
    filter:drop-shadow(0px 0px 3px black)
}

.dropdown2-position {
    width: 40%;
    display: flex;
    justify-content: flex-end;
}

.dropdown2 {
    width: 25px;
    height: auto;
    filter:drop-shadow(0px 0px 3px black);
    transform: rotate(120deg);
}

.upperevo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thirdevo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.pokechain-img {
    height: auto;
    width: auto;
    z-index: 2;
    transition: all 120ms ease-in-out;
    cursor: pointer;
    margin-bottom: 10px;
}

.pokechain-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.521));
}

.pokechain-img:active {
    transform: scale(1.1);
}

.scale1 {
    transform: scale(1.7);
    margin-bottom: 50px;
}

.shiny {
    filter: drop-shadow(5px 1px 2px black);
}