calcite panel height and width do not adjust for Search widget. Without CSS adjustments you cannot see search results because the height of the panel does not grow when search results are returned.

If you set the width to 100% and the height of the container to a fixed height, you can see the search results, A fixed height is not ideal. Any suggestions on how to get the height to adjust dynamically?
#search-container.esri-search.esri-widget {
width: 100% !important;
align-items: flex-start;
min-height: 360px;
padding: 0px;
overflow: auto;
}

calcite panel height and width do not adjust for Search widget. Without CSS adjustments you cannot see search results because the height of the panel does not grow when search results are returned.
If you set the width to 100% and the height of the container to a fixed height, you can see the search results, A fixed height is not ideal. Any suggestions on how to get the height to adjust dynamically?
#search-container.esri-search.esri-widget {
width: 100% !important;
align-items: flex-start;
min-height: 360px;
padding: 0px;
overflow: auto;
}