
.search-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#search-badge {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 0.85rem;
}

#search-badge svg {
    width: 28px;
    height: 28px;
}

.dataset {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    max-width: 380px;
    margin-bottom: 20px;
}

.data-item {
    width: 30px;
    height: 30px;
    background: #FFFFFF10;
    border: 1px solid #FFFFFF22;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.75rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.data-item.scanning {
    background: color-mix(in srgb, #22D3EE 15%, transparent);
    border-color: color-mix(in srgb, #22D3EE 40%, transparent);
    color: var(--text-main);
}

.data-item.highlighted {
    background: color-mix(in srgb, #22D3EE 33%, transparent);
    border: 1.5px solid #22D3EE;
    color: var(--text-main);
    font-weight: 600;
    box-shadow: 0 0 12px color-mix(in srgb, #22D3EE 40%, transparent);
}

#status {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}
