/** Açıkça işaretlenen seçim alanları için tek dropdown görünümü. */
html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select {
    position: relative;
    width: 100%;
    min-width: 0;
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select.is-open { z-index: 10050; }

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__trigger {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    cursor: pointer;
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__chevron {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-right: 1.5px solid #667085;
    border-bottom: 1.5px solid #667085;
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--ccrm-transition);
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select.is-open .ccrm-ui-select__chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__menu {
    position: fixed;
    z-index: 2147483400;
    display: none;
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 6px;
    border: 1px solid var(--ccrm-border);
    border-radius: var(--ccrm-radius-sm);
    background: var(--ccrm-surface);
    box-shadow: var(--ccrm-dropdown-shadow);
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select.is-open .ccrm-ui-select__menu { display: block; }

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__search {
    width: 100%;
    height: 34px;
    margin: 0 0 6px;
    padding: 0 9px;
    border: 1px solid var(--ccrm-border);
    border-radius: 6px;
    font-size: 12px;
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__group {
    padding: 7px 10px 4px;
    color: var(--ccrm-muted);
    font-size: 10.5px;
    font-weight: 600;
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__option {
    appearance: none;
    display: flex;
    width: 100%;
    min-height: 36px;
    align-items: center;
    padding: 0 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--ccrm-text);
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__option:hover,
html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__option:focus-visible {
    background: var(--ccrm-surface-hover);
    outline: 0;
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__option.is-selected {
    background: var(--ccrm-primary-soft);
    color: var(--ccrm-primary-hover);
}

html body.ccrm-app.ccrm-ui-v4 .ccrm-ui-select__option[aria-disabled="true"] {
    opacity: .48;
    cursor: not-allowed;
}
