.noItems {
    font-style: italic;
}

.categoryGroup {
    border-bottom: 1px solid white;
    padding: 10px;
}

.categoryGroup:last-child {
    border-bottom: none;
    padding: 100px;
    color: hotpink;
}

.product_container {
    overflow: auto;
    border-bottom: 1px solid white;
}

.product_container:last-child {
    border-bottom: none;
}

.product {
    display: flex;
    padding: 10px;
}

.product:hover {
    background: honeydew;
}

.productImage {
    min-width: 100px;
    max-width: 100px;

}

.productImage img {
    width: 100%;
}

.productName {
    color: purple;
    font-weight: bold;
    margin-left: 5px;
}

.productSellers {
    display: flex;
    
}

.sellerspricesandplaces {
    padding: 5px;
    border-right: 0.8px solid black;
}

.sellerspricesandplaces:last-child {
    border-right: none;
}

.sellerspricesandplaces a:hover .div {
    background: white;
    padding: 5px;
    border-radius: 2px;
}

.place {
    padding: 3px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: bold;
    background-color: chartreuse;
    display: initial;

}