.custom-product-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-product-item {
	display: flex;
	flex-direction: ltr;
	flex-wrap: wrap;
    border: 1px solid lightgrey;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.custom-product-item.selected {
    border-color: black;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-title {
    width: 80%;
    font-weight: bold;
    font-size: 16px;
}

.product-checkbox {
    width: 20%;
    margin-left: auto;
	justify-content: flex-end;
}

.product-price {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}

.quantity-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 5px;
}

.quantity-buttons button {
    padding: 5px;
    border: 1px solid lightgrey;
    background-color: white !important;
    cursor: pointer;
    border-radius: 999px;
    font-size: 13px;
}

.quantity-buttons button:hover {
    background-color: #f0f0f0;
}
