.autocomplete {
    position: relative;
    width: 300px;
}

#city-input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background: #fff;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
}

.suggestion-item:hover,
.suggestion-item.active {
    background: #eaeaea;
}
