/* Custom styles for the for-sale page. */
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
}

.product-image {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.product-content {
    width: 100%;
}

.product-content h2 {
    font-size: 1.2em;
    margin: 10px 0;
}

.product-content small {
    display: block;
    color: #888;
    margin-bottom: 10px;
}

.product-content p {
    margin: 5px 0;
}

.product-content em {
    font-weight: bold;
    color: #e44d26;
    font-style: normal;
}
.highlightLinks {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
border-radius: 5px
}