body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #f1f1f1;
}

#searchArea {
    margin: 20px;
}

#searchTerm {
    width: 250px;
    padding: 8px;
    font-size: 16px;
}

#searchBtn {
    padding: 8px 15px;
    background: #1e90ff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#results {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 220px;
    background: white;
    margin: 15px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    border-radius: 5px;
}

audio {
    width: 100%;
    margin-top: 10px;
}
