.autocomplete-suggestions {
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    background: white;
    z-index: 999;
    width: auto;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

.highlighted {
    background-color: #ddd;
}

.autocomplete-suggestions {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: white;
}

.txtBorder {
    padding: 3px;
    border-color: rgb(145, 17, 191);
    border-radius: .3rem;
    line-height: 25px;
    font-size: medium;
}

.txtLine {
    margin: 5px;
}

.LineB {
    display: block;
}