.autocomplete-container {
    position: relative;
    width: 300px;
}
#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}
#suggestions li {
    padding: 10px;
    cursor: pointer;
}
#suggestions li:hover {
    background-color: #f0f0f0;
}
