.choices-editor {
    background: white;
    border: 1px solid var(--mud-palette-lines-default, #e0e0e0);
    border-radius: 4px;
    min-width: 250px;
    max-width: 400px;
    max-height: 60vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-family: inherit;
    z-index: 1;
}

.choices-editor-search {
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid var(--mud-palette-lines-default, #e0e0e0);
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.choices-editor-search:focus {
    border-bottom-color: var(--mud-palette-primary, #594AE2);
}

.choices-editor-dropdown {
    flex: 1;
    overflow-y: auto;
    padding: 4px 0;
    min-height: 0;
}

.choices-editor-option {
    padding: 6px 12px;
    height: 34px;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.choices-editor-option:hover {
    background-color: var(--ag-row-hover-color, #f5f5f5);
}

.choices-editor-option-selected {
    font-weight: 600;
}

.choices-editor-no-results {
    padding: 8px 12px;
    color: #999;
    font-style: italic;
}
