/* NK Address Autocomplete — front (scoped: nkaa- prefix only, no global selectors) */
.nkaa-suggestions {
    position: absolute;
    z-index: 99999;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    max-height: 280px;
    overflow-y: auto;
    display: none;
    font-size: 14px;
    line-height: 1.3;
}

.nkaa-item {
    padding: 9px 12px;
    cursor: pointer;
    color: #232323;
    white-space: normal;
    border-bottom: 1px solid #f0f0f0;
}

.nkaa-item:last-child {
    border-bottom: 0;
}

.nkaa-item:hover,
.nkaa-item.nkaa-active {
    background: #f3f6fb;
}
