.pokemonSprite {
    max-height: 64px;
    max-width: 64px;

}

.pokemonName {
    font: bold;

}

.locationTable {
    border-color: black;
    border-style: solid;
    border-radius: 12px;
    
}

.pokemonContainer {
    display: flex;
    align-items: center; /* Align items vertically in the center */
    padding: 5px 0px 5px 0px;
}

.tradeSymbol {
    max-width: 250px;
    max-height: 150px;
}

.tradeSymbolSmall {
    max-width: 60px;
    max-height: 30px;
}

.noDotUL {
    list-style-type: none;
}

.infoBorder {
    border-style: double;
    border-color: black;
    border-width: 7px;
    display: inline-block;
    padding: 10px 35px 10px 35px;
    justify-content: center;
    
}

.locationBorder {
    border-style: solid;
    border-color: black;
    border-width: 5px;
    padding: 10px 10px 10px 30px;
}


.rarityIcon {
    display: inline-block;
    width: 66px;
    margin-bottom: 4px;
    background: #dbdbdb;
    border: 1px solid #a3a3a3;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, .2);
    color: white;
    font-size: .75rem;
    font-weight: normal;
    line-height: 1.5rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7);
    text-transform: uppercase;
}

.rarityCommon {
    background-color: green;
    border-radius: 5px;
    border-color: black;
    border-width: 1px;
}

.rarityUncommon {
    background-color: rgb(47, 158, 255);
    border-radius: 5px;
    border-color: black;
    border-width: 1px;
}

.rarityRare {
    background-color: rgb(135, 235, 250);
    border-radius: 5px;
    border-color: black;
    border-width: 1px;
}

.rarityEpic {
    background-color: rgb(215, 24, 24);
    border-radius: 5px;
    border-color: black;
    border-width: 1px;
}

.rarityLegendary {
    background-color: orange;
    border-radius: 5px;
    border-color: black;
    border-width: 1px;
}

.rarityMythic {
    background-color: deeppink;
    border-radius: 5px;
    border-color: black;
    border-width: 1px;
}

.rarityUnique {
    background-color: gold;
    border-radius: 5px;
    border-color: black;
    border-width: 1px;
    border-style:groove ;
}

.rarityEvent {
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    border-color: black;
    border-width: 1px;
}

