.mainPokeDexContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.pokeContainer {
    height: 250px;
    width: 200px;
    background-color: rgba(104, 104, 104, 0.5);
    border-radius: 10px;
    outline: solid 4px rgba(0, 0, 0, 0.5);
    box-shadow: 10px 5px 15px 1px rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pokeContainer:hover {
    cursor: pointer;
    box-shadow: inset 0px 0px 20px 1px rgb(0, 0, 0);
}

.pokeContainer:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.pokeImage {
    height: 200px;
    width: 200px;
}

.imagePokeContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
}

.imagePokeContainer img {
    width: 120px;
}

.headlinePokeName {
    font-size: 25px;
    margin: 10px 0px 16px 0px;
    color: white;
}

.pokeCard {
    background-color: rgb(41, 41, 41);
    width: 400px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 10px 10px 15px rgb(0, 0, 0);
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    border: solid 5px;
}

.closeModalButton {
    cursor: pointer;
    width: 24px;
}

.typeStyling {
    background-color: green;
    border-radius: 5px;
    box-shadow: inset 0px 0px 7px 2px rgb(0, 0, 0);
    padding: 2px;
    text-align: center;
    width: 60px;
    height: 20px;
    margin-top: 8px;
    color: white;
}

.modelWindow {
    height: 100vh;
    width: 100%;
    background-color: rgba(52, 52, 52, 0.5);
    position: fixed;
    top: 0px;
    left: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
}

.closeImageContainer {
    position: absolute;
    top: 20px;
    right: 20px;
}

.closeImageContainer img {
    width: 30px;
    cursor: pointer;
}

.pokeCardImage {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.pokeCardDetails {
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: black;
    border-radius: 5px;
    height: 64px;
}

.pokeCardDetailsBottom {
    color: white;
    background-color: black;
    border-radius: 5px;
    height: 100%;
    min-height: 64px;
    padding: 8px;
    text-align: left;
    margin-top: 30px;
}

.arrow {
    height: 32px;
    background-color: rgb(78, 78, 78);
    border-radius: 10px;
}

.arrow:hover {
    cursor: pointer;
    background-color: rgb(116, 116, 116);
}

.notAilableContainer{
    height: 100vh;
    width: 100%;
    background-color: rgba(52, 52, 52, 0.5);
    position: fixed;
    top: 0px;
    left: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
}

.notAilableCard{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    background: #121212;
    width: 400px;
    height: 400px;
    border-radius: 15px;
    box-shadow: 10px 5px 15px 1px rgb(0, 0, 0);
}

.notAilableCardButton{
    cursor: pointer;
    margin-top: 32px;
}

.pokeSearch {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
}

.searchButton {
    border-radius: 5px;
    width: 80px;
    height: 32px;
    border-width: 1px;
    margin-left: 20px;
    background-color: rgb(255, 255, 255);
}

.searchButton:hover {
    box-shadow: inset 0px 0px 10px 2px rgb(0, 0, 0);
    cursor: pointer;
}

.searchInput{
    height: 32px;
    border-radius: 5px;
    text-align: center;
}

input:invalid {
    background-color: rgb(255, 66, 66);
  }
input::placeholder{
    color: white;
}

.dropDownContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.pokeDropDown{
    display: none;
}

.topButton{
    border-radius: 50px;
    height: 50px;
    width: 50px;
    font-size: xx-large;
    text-align: center;
    justify-content: center;
    display: flex;
    padding-top: 10px;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    left: 20px;
}

.scrollButton{
    position: sticky;
    bottom: 32px;
    height: 100%;
    margin: 16px 0px 16px 16px;
}