/* ── CRM Header Search ──────────────────────────────────────────────────────── */

.crm-header-search {
    position: relative;
    width: 380px;
    flex-shrink: 0;
}

.crm-header-search input[type="search"] {
    width: 100%;
    height: 2.25em;
    font-size: 0.875rem;
    line-height: 1;
    padding: 0 0.75rem;
    box-sizing: border-box !important; /* Wagtail reset sets box-sizing:initial on input[type=search] */
    border: 1px solid var(--w-color-border-furniture, #e5e7eb);
    border-radius: 0.3125rem;
    background: var(--w-color-surface-page, #fff);
    color: var(--w-color-text-label, #111827);
    outline: none;
}

.crm-header-search input[type="search"]:focus {
    border-color: var(--w-color-focus, #2563eb);
}

/* ── Autocomplete dropdown ──────────────────────────────────────────────────── */

.crm-dropdown__heading {
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--w-color-text-meta, #6b7280);
}

.crm-dropdown__item {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: var(--w-color-text-label, #111827);
    transition: background-color 0.1s ease;
}

.crm-dropdown__item:hover,
.crm-dropdown__item:focus {
    background-color: #f3f4f6;
    outline: none;
}

.crm-dropdown__item-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.crm-dropdown__item-sub {
    font-size: 0.75rem;
    color: var(--w-color-text-meta, #6b7280);
    margin-top: 0.125rem;
}

.crm-dropdown__footer {
    display: block;
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
    color: var(--w-color-primary, #2563eb);
    text-decoration: none;
    border-top: 1px solid var(--w-color-border-furniture, #e5e7eb);
    background: #f9fafb;
}

.crm-dropdown__footer:hover {
    text-decoration: underline;
}

/* ── Search result highlights ──────────────────────────────────────────────── */

.crm-search-highlight mark,
mark {
    background-color: rgba(250, 204, 21, 0.4);
    color: inherit;
    border-radius: 2px;
    padding: 0 1px;
}

