/* Programme Finder Cludo autocomplete overlays (IBF UI).
   AI overview uses theme .add-notes / .note-box styles from program-finder2.html */

.filter-search {
    position: relative;
}

.programme-finder-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 50;
    max-height: 340px;
    overflow-y: auto;
    text-align: left;
    padding: 6px;
}

.programme-finder-suggestions .suggestion-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: #342c25;
    text-decoration: none;
    border: 0;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
}

.programme-finder-suggestions .suggestion-item + .suggestion-item {
    border-top: 1px solid #f0f0f0;
}

.programme-finder-suggestions .suggestion-item:hover,
.programme-finder-suggestions .suggestion-item:focus {
    background: #f4f1ec;
    outline: none;
}

.programme-finder-suggestions .suggestion-item strong {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.35;
}

.programme-finder-suggestions .suggestion-text {
    color: #342c25;
    font-size: 15px;
}

.brand-feature-card[data-programme-finder-popular] {
    cursor: pointer;
}
