.suggestions {
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    z-index: 10;
    display: none; /* 기본적으로 숨김 */
}
.suggestion-item {
    padding: 10px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f5f5f5; /* 호버 시 배경색 변경 */
}
#productTable_wrapper {
    margin-top: 20px;
}