body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
}

.search-form {
    margin-bottom: 20px;
}

.wishlist {
    display: flex;
    flex-wrap: wrap;
}

.item {
    width: calc(33.33% - 20px);
    margin: 10px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

img {
    max-width: 100%;
    height: auto;
}

.description {
    margin-top: 10px;
    position: relative;
    max-width: 100%; /* Set maximum width for the description */
    overflow-wrap: break-word; /* Allow words to break onto the next line */
}

.price,
.tags,
.external-link {
    margin-top: 10px;
    font-style: italic;
}
