.crm-scanner {
    max-width: 900px;
    font-family: Arial, sans-serif;
}

.crm-search-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

#crm-search {
    flex: 1;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.crm-active-selection {
    min-width: 260px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #ecfdf5;
    border: 1px solid #22c55e;
    color: #065f46;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crm-active-selection.empty {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #64748b;
}

.crm-active-selection button {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

.crm-results {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.crm-result {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
}

.crm-result:hover {
    background: #f8fafc;
}

.crm-result small {
    display: block;
    color: #64748b;
}

.crm-history-block {
    margin-bottom: 16px;
}

.crm-selection-history {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.crm-selection-history button {
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    border-radius: 999px;
    padding: 6px 10px;
    cursor: pointer;
}

.crm-selection-history small {
    margin-left: 6px;
    color: #64748b;
}

.crm-note-block textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}