body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(90deg, #f14d24e5, #f2c83e);
    color: #333;
}

header {
    text-align: center;
    background-image: linear-gradient(90deg, #0d20f4fa, #6e1645);
    padding: 20px;
    color: white;
}

header input, header button {
    margin: 10px;
    padding: 10px;
    font-size: 16px;
}

#pokemonList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.pokemon-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 10px;
    padding: 20px;
    text-align: center;
    width: 150px;
    background-color: #fff;
}

.pokemon-card img {
    width: 100px;
    height: 100px;
}

#errorMessage {
    color: red;
    text-align: center;
    margin-top: 20px;
}

.ghost-button {
    background: none;
    border: 2px solid #ff6f61;
    color: #ff6f61;
    padding: 10px 15px;
    margin-left: 10px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
  
.ghost-button:hover {
    background-color: #ff6f61;
    color: white;
}