.address-assist-control {
    min-width: 0;
    position: relative;
    width: 100%;
}

.address-assist-control > input {
    width: 100%;
}

.address-assist-tools {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.address-assist-locate {
    background: transparent;
    border: 0;
    color: var(--accent-blue, var(--blue, var(--accent, #74b9ff)));
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 650;
    margin: 0;
    min-height: 30px;
    padding: 4px 2px;
}

.address-assist-locate:hover,
.address-assist-locate:focus-visible {
    text-decoration: underline;
}

.address-assist-locate:disabled {
    cursor: wait;
    opacity: 0.55;
}

.address-assist-status {
    color: var(--text-muted, var(--muted, #a8b3c7));
    font-size: 12px;
    line-height: 1.4;
    min-height: 0;
}

.address-assist-status:not(:empty) {
    margin-top: 4px;
}

.address-assist-status.error {
    color: var(--accent-red, var(--danger, #ff8a8a));
}

.address-assist-list {
    background: var(--bg-secondary, var(--panel, #172033));
    border: 1px solid var(--border-color, var(--line, rgba(255, 255, 255, 0.18)));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    left: 0;
    max-height: 260px;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    z-index: 1200;
}

.address-assist-option {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border-color, var(--line, rgba(255, 255, 255, 0.1)));
    border-radius: 0;
    color: var(--text-primary, var(--text, #fff));
    cursor: pointer;
    display: block;
    font: inherit;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    padding: 11px 12px;
    text-align: left;
    width: 100%;
}

.address-assist-option:last-child {
    border-bottom: 0;
}

.address-assist-option:hover,
.address-assist-option.active {
    background: rgba(74, 158, 255, 0.18);
}
