﻿.autocomplete-container {
    position: relative;
    width: 100%;
}

.suggestions-list {
    position: absolute;
    background-color: white;
    width: 400px;
    max-height: 440px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 100;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

    .suggestion-item:hover {
        background-color: #f0f0f0;
    }
