/**
 * address-field.css — Ops UI Library: AddressField visual layer
 *
 * Mirrors inn-field.css with `af-` prefix. Same absolute-positioned dropdown
 * pattern — slightly higher max-height since address suggestions list is
 * typically longer (up to 10 rows).
 *
 * Block 6.3.3 of task radar-os--479-contractors-mode.
 */

.af-wrapper {
    position: relative;
    display: block;
}

.af-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 9500;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    max-height: 320px;
    overflow-y: auto;
    display: none;
    color: var(--text);
}

.af-dropdown.is-open {
    display: block;
}

.af-dropdown-row {
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.15s;
    line-height: 1.35;
    font-size: 13px;
    color: var(--text);
}

.af-dropdown-row:hover {
    background: var(--sidebar-active, rgba(255, 255, 255, 0.06));
}
