.dgkv-recipient-picker {
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    background: #fff;
    max-width: 600px;
    margin-bottom: 16px;
}

.dgkv-recipient-picker__search-wrap {
    position: relative;
    padding: 10px 12px;
    border-bottom: 1px solid #e0e0e0;
}

.dgkv-recipient-picker__search {
    width: 100%;
    padding: 8px 12px 8px 34px;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.15s;
}

.dgkv-recipient-picker__search:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.dgkv-recipient-picker__search-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #8c8f94;
    pointer-events: none;
    font-size: 16px;
    line-height: 1;
}

.dgkv-recipient-picker__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid #e0e0e0;
    background: #f6f7f7;
    font-size: 13px;
}

.dgkv-recipient-picker__actions {
    display: flex;
    gap: 12px;
}

.dgkv-recipient-picker__action {
    background: none;
    border: none;
    color: #2271b1;
    cursor: pointer;
    font-size: 13px;
    padding: 0;
    text-decoration: none;
}

.dgkv-recipient-picker__action:hover {
    color: #135e96;
    text-decoration: underline;
}

.dgkv-recipient-picker__count {
    color: #50575e;
    font-size: 13px;
    white-space: nowrap;
}

.dgkv-recipient-picker__count strong {
    color: #1d2327;
}

.dgkv-recipient-picker__list {
    max-height: 260px;
    overflow-y: auto;
    padding: 4px 0;
}

.dgkv-recipient-picker__item {
    display: flex;
    align-items: center;
    padding: 7px 12px;
    cursor: pointer;
    transition: background-color 0.1s;
    user-select: none;
    gap: 10px;
}

.dgkv-recipient-picker__item:hover {
    background: #f0f0f1;
}

.dgkv-recipient-picker__item--hidden {
    display: none;
}

.dgkv-recipient-picker__checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #2271b1;
}

.dgkv-recipient-picker__avatar {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dcdcde;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #50575e;
    text-transform: uppercase;
    overflow: hidden;
}

.dgkv-recipient-picker__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dgkv-recipient-picker__info {
    flex: 1;
    min-width: 0;
}

.dgkv-recipient-picker__name {
    font-size: 14px;
    color: #1d2327;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dgkv-recipient-picker__email {
    font-size: 12px;
    color: #8c8f94;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dgkv-recipient-picker__empty {
    padding: 20px 12px;
    text-align: center;
    color: #8c8f94;
    font-size: 13px;
    display: none;
}

.dgkv-recipient-picker__empty--visible {
    display: block;
}
