#search-box {
    width: 100%;
    max-width: 600px;
    min-width: 400px;
}

.autocomplete-list {
    position: absolute;
    width: calc(100% - 20px); /* Căn chỉnh chiều rộng theo input */
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    z-index: 9999;
}
.autocomplete-list div {
    padding: 8px;
    cursor: pointer;
}
.autocomplete-list div:hover {
    background: #f8f9fa;
}
