/* -------------------------------------------------------------------------
   DAWA Autocomplete Dropdown
   ------------------------------------------------------------------------- */

.dawa-dropdown {
    list-style:       none;
    margin:           0;
    padding:          0;
    background:       #fff;
    border:           1px solid #ccc;
    border-top:       none;         /* input bottom edge = dropdown top edge */
    border-radius:    0 0 4px 4px;
    box-shadow:       0 4px 8px rgba(0,0,0,0.1);
    max-height:       260px;
    overflow-y:       auto;
}

.dawa-dropdown-item {
    padding:          0.5rem 0.75rem;
    font-size:        0.9rem;
    color:            #333;
    cursor:           pointer;
    border-bottom:    1px solid #f0f0f0;
    white-space:      nowrap;
    overflow:         hidden;
    text-overflow:    ellipsis;
}

.dawa-dropdown-item:last-child {
    border-bottom: none;
}

/* Highlighted item — set on mouseover and keyboard arrow navigation */
.dawa-dropdown-item--active,
.dawa-dropdown-item:hover {
    background: #0073aa;
    color:      #fff;
}