/*
 * f2typesense autocomplete — structural positioning only.
 *
 * The plugin ships the absolute minimum CSS needed to anchor the
 * dropdown under the input and give the list a clean z-index stack.
 * Everything else — colors, borders, shadows, hover states, thumbnail
 * dimensions, typography — is owned by the host theme (see the BVEG
 * theme `assets/src/css/app.css` `@layer components` block for the
 * BVEG-branded skin).
 *
 * Rationale: sites that style their search input with a brand pill
 * shape (e.g. BVEG `.rounded-bveg`) cannot tolerate plugin-imposed
 * box-shadow / borders / max-width. By stripping the plugin to
 * structural rules only the theme keeps full visual control, and
 * Shortcode-only sites that want a default look can ship their own
 * minimal stylesheet.
 */

.f2ts-autocomplete {
    position: relative;
}

.f2ts-autocomplete__dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
}
