/* LUS Live Property Search dropdown */

.lus-live-search-wrap {
    position: relative;
    width: 100%;
}

.lus-live-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    margin-top: 6px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    max-height: 360px;
    overflow-y: auto;
    text-align: left;
}

.lus-live-results.is-open {
    display: block;
}

.lus-live-result {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 14px;
    text-decoration: none;
    color: #222;
    background: none;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.lus-live-result:last-of-type {
    border-bottom: none;
}

.lus-live-result:hover,
.lus-live-result:focus {
    background: #f7f7f7;
    color: #222;
}

.lus-live-result-pin {
    flex-shrink: 0;
    color: #e02020;
}

.lus-live-result-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lus-live-result-title {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lus-live-result-meta {
    font-size: 12px;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lus-live-loading {
    padding: 14px;
    font-size: 13px;
    color: #999;
    text-align: center;
}

.lus-live-no-results {
    padding: 14px;
    font-size: 13px;
    color: #777;
    text-align: center;
}

.lus-live-view-all {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    color: #e02020;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.lus-live-view-all:hover {
    background: #f0f0f0;
}
