.suggestions-dropdown {
    position: absolute;
    border: 1px solid #ccc;
    background-color: #fff;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none; /* Initially hidden */
}

.suggestions-dropdown div {
    text-align: left;
    padding: 10px;
    cursor: pointer;
}

.suggestions-dropdown div:hover {
    background-color: #f0f0f0;
}
