.cardBank {
    width: 100%;
    height: auto;
    padding: 15px;
    background-color: #555;
    border-radius: 5px;
    display: flex;
    justify-content: center; /* Center content horizontally */
    flex-wrap: wrap; /* Wrap content to fit */
}

.pokemon-card {
    cursor: pointer;
    width: 75px; /* Increased width for better desktop display */
    height: 75px; /* Increased height for better desktop display */
    margin: 5px; /* Uniform spacing between cards */
    display: flex;
    justify-content: center;
    align-items: center;
}

.pokemon-card img {
    width: 100%; /* Scale image to fit card */
    height: 100%; /* Scale image to fit card */
    object-fit: cover; /* Maintain aspect ratio */
}

.pokemon-card.border-success {
    border-color: #28a745;
}
.pokemon-card.border-danger {
    border-color: #dc3545;
}

@media (max-width: 768px) {
    .row {
        flex-direction: row;
    }
}
