﻿/* autocomplete.css */
.ac-dropdown {
    position: absolute; /* back to absolute, but parent is the col div */
    z-index: 9999;
    left: 0;
    right: 0; /* matches parent width automatically */
    margin: 0;
    padding: 4px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    max-height: 220px;
    overflow-y: auto;
    font-family: inherit;
    font-size: 14px;
}
.ac-item {
    padding: 7px 12px;
    cursor: pointer;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .ac-item:hover,
    .ac-item.ac-active {
        background: #e8f0fe;
        color: #1a56db;
    }