﻿@import url('./lab-theme.css');

body { display: block; }

.autocomplete-wrap {
    max-width: 760px;
    width: calc(100% - 32px);
    margin: 12px auto;
    border: 1px solid var(--lab-border);
    border-radius: 12px;
    background: var(--lab-surface);
    box-shadow: var(--lab-shadow);
    padding: 14px;
}

.suggestions {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    border: 1px solid #d9e2ec;
    border-radius: 10px;
    max-height: 220px;
    overflow: auto;
}

.suggestions li {
    padding: 8px 10px;
    cursor: pointer;
    border-bottom: 1px solid #eef2f7;
}

.suggestions li:last-child {
    border-bottom: none;
}

.suggestions li:hover,
.suggestions li.active {
    background: #f8fbff;
}

#autocompleteStatus {
    margin-top: 10px;
}
