#suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    width: 300px;
    display: none;
}
#suggestions div {
    padding: 5px;
    cursor: pointer;
}
#suggestions div:hover {
    background: #f0f0f0;
}
#error-message {
    color: red;
    display: none;
    margin-top: 10px;
}
