.pokemon-card {
    width: 300px;
    border: 2px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: white;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: .25s all ease-out;
    z-index: 0;
}

.pokemon-card:hover {
    transform: scale(105%);
    transition: .15s all ease-in;
}

.card-header {
    color: white;
    padding: 10px 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
}

.card-body {
    padding-top: 24px;
}

.card-image {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: .25s all ease-out;
}

.card-image img:hover {
    -webkit-filter: drop-shadow(5px 5px 5px #22222280);
    filter: drop-shadow(5px 5px 5px #22222280);
    transition: .15s all ease-in;
}

.card-stats {
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.3em;
    font-weight: bold;
}

.stat-label {
    font-size: 0.8em;
}

.card-footer {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 0.9em;
    color: #555;
}
