body {
    scroll-behavior: smooth;
    margin: 100px 0px;
    user-select: none;
    font-family: 'roboto-regular';
    background-color: black;
}

.overflowHidden {
    overflow-y: hidden;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: aliceblue;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0px;
    flex-wrap: wrap;
}

input {
    cursor: pointer;
}

header a img {
    height: 50px;
    margin-left: 50px;
}

header h1 {
    margin-right: 50px;
}

.pokemonContainer {
    display: flex;
    justify-content: center;
}

.pokemonContainer div h3 {
    color: white;
}

#pokemonContent {
    max-width: 1920px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 32px 32px 72px;
}

.pokemonNameCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: green;
    color: white;
    width: 300px;
    height: 200px;
    cursor: pointer;
}

.pokemonNameCard h2 {
    text-align: center;
    width: 100%;
    margin-block-start: 10px;
    margin-block-end: 0px;
}

.pokemonShortData {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
}

.pokemonShortData p {
    text-align: center;
    width: 75px;
    border: 1px solid black;
}

.imgContent {
    height: 75px;
    width: 75px;
    padding: 25px;
    border: 1px solid black;
    border-radius: 100%;
    background-image: url('./4.svg');
    background-position: center;
    background-size: 75px 75px;
    background-repeat: no-repeat;
    background-color: black;
}

#pokemon {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 530px;
    width: 304px;
    background-color: #ff9800;
    color: white;
    border-radius: 10px;
}

#pokemonCard {
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: default;
}

tbody {
    height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
}

tbody::-webkit-scrollbar {
    width: 4px;
}

tbody::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

tbody::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

#pokemonInfo {
    background-color: white;
    height: 293px;
    width: 300px;
    border-radius: 10px;
    margin-top: -303px;
    font-size: 16px;
    color: white;
    background-color: black;
}

#pokemonInfo img {
    height: 106px;
    width: 106px;
}

.pokemonImg {
    display: flex;
    height: 125px;
    width: 125px;
    border: 1px solid rgba(255, 152, 0, 0.8);
    border-radius: 100%;
    margin-top: -119px;
    margin-left: 77px;
    position: absolute;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: black;
}

#pokemonType {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
    margin-top: -28px;
}

#top {
    display: flex;
    justify-content: center;
    font-size: 18px;
    gap: 10px;
}

#bottom {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

#bottom p {
    width: 65px;
    color: black;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid white;
    border-radius: 10px;
    text-align: center;
    margin-block-start: 0px;
    margin: 0 10px;
}

.type {
    border: 1px solid black;
    padding: 4px 10px;
    border-radius: 10px;
    text-align: center;
}

#pokemonId {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.idInfo {
    margin-left: 14px;
}

.abilities {
    margin-left: 14px;
}

#pokemonId nav {
    display: flex;
    justify-content: space-around;
}

table {
    display: flex;
    justify-content: flex-start;
    margin-left: 14px;
}

.upperCase:first-letter {
    text-transform: uppercase;
}

.d-none {
    display: none !important;
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-Index: 2;
    cursor: pointer;
}

.loadingContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 50%;
    color: white;
}

.loadingBar {
    background-color: black;
    border: 1px solid white;
    width: 100%;
    height: 20px;
}

.loadingBar h3 {
    display: flex;
    justify-content: center;
    color: white;
}

.loadingBar span {
    display: flex;
    justify-content: center;
    color: white;
}

.percentBar {
    background-color: blue;
    width: 100%;
    height: 20px;
}

button {
    z-index: 3;
    background-color: antiquewhite;
    color: black;
    width: 70px;
    border-radius: 5px;
    cursor: pointer;
}

@media screen and (max-width: 460px) {
    input {
        margin-bottom: 16px;
    }

    .pokemonNameCard {
        width: 260px !important;
    }

}

;