/**
 * sadan-autocomplete.css — Item 42
 * Styles for the live-search autocomplete dropdown.
 */

/* ── Wrapper ─────────────────────────────────────────────────────────────── */
.sadan-ac-wrap {
    position: relative;
    display: flex;
    flex: 1;
}

/* ── Listbox ─────────────────────────────────────────────────────────────── */
.sadan-ac-list {
    position: absolute;
    top: calc(100% + 4px);
    inset-inline-start: 0;
    width: 100%;
    min-width: 260px;
    background: #fff;
    border: 1px solid #dde3ea;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
    margin: 0;
    padding: 6px 0;
    list-style: none;
    z-index: 9999;
    max-height: 360px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* inner <ul> reset (rendered by JS) */
.sadan-ac-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ── Group label ─────────────────────────────────────────────────────────── */
.sadan-ac-group {
    padding: 0;
}

.sadan-ac-group-label {
    display: block;
    padding: 8px 14px 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9aaabb;
    user-select: none;
}

/* ── Result item ─────────────────────────────────────────────────────────── */
.sadan-ac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 0;
    line-height: 1.3;
}

.sadan-ac-item:hover,
.sadan-ac-item.sadan-ac-active {
    background: #f0f5eb;
}

.sadan-ac-item-icon {
    flex-shrink: 0;
    font-size: 16px;
    width: 22px;
    text-align: center;
    color: #a0b84f;
}

.sadan-ac-item-label {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #233f5a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sadan-ac-item-sub {
    font-size: 12px;
    color: #8fa3b3;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Loading / no-results ────────────────────────────────────────────────── */
.sadan-ac-loading,
.sadan-ac-no-results {
    padding: 12px 16px;
    font-size: 13px;
    color: #8fa3b3;
    text-align: center;
}

/* ── RTL support ─────────────────────────────────────────────────────────── */
[dir="rtl"] .sadan-ac-list {
    text-align: right;
}
