#suggestion-box {
    position: relative;
    top: 5px; /* Adjust position from input field */
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    display: none;
    z-index: 1000;
}

.suggestions div {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.suggestions div:hover {
    background-color: #0d6efd;
    color: #fff;
}

.suggestions #noResult:hover {
    background-color: white;
    color: #000;
}

