
#search-container { 
    position: relative; 
    width: 300px; 
}

#search { 
    width: 100%; 
    padding: 5px; 
}

#dropdown { 
    position: absolute; 
    top: 30px; 
    left: 0; 
    right: 0; 
    border: 1px solid #ccc; 
    background: #fff; 
    max-height: 150px; 
    overflow-y: auto; 
    display: none; 
    z-index: 100;
}

.dropdown-item { 
    padding: 5px; 
    cursor: pointer; 
}

.dropdown-item:hover { 
    background: #f0f0f0; 
}

#result { 
    margin-top: 20px; 
    padding: 20px; 
    border: 1px solid #ccc; 
    width: 300px; 
}