.cre-estate-picker-wrap {
    position: relative;
}

.cre-estate-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border: 1px solid #dce0e0;
    border-radius: 4px;
    margin-top: 2px;
    max-height: 260px;
    overflow-y: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cre-estate-suggestion {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    cursor: pointer;
}

.cre-estate-suggestion:hover,
.cre-estate-suggestion:focus {
    background: #f5f6f6;
    outline: none;
}

.cre-estate-suggestion + .cre-estate-suggestion {
    border-top: 1px solid #eef0f0;
}

.cre-estate-suggestion-thumb {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.cre-estate-suggestion-text {
    min-width: 0;
}

.cre-estate-suggestion-title {
    font-size: 13px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cre-estate-suggestion-address {
    font-size: 11px;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cre-estate-suggestion-empty {
    padding: 10px 12px;
    font-size: 12px;
    color: #999;
    font-style: italic;
}
