.array-select-control-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.25;
}

.array-select-control-label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.array-select-search-input {
    width: 100%;
    max-width: 100%;
    min-height: 32px;
    height: 36px;
    padding: 6px 10px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.25;
}

.array-select-results {
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: min(100%, calc(100vw - 24px));
    max-height: 190px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 2px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    padding: 2px 0;
}

.array-select-results-portal {
    z-index: 2147483000;
}

.array-select-results button.array-select-result,
button.array-select-result {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 30px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 6px 9px !important;
    border: 0 !important;
    border-bottom: 1px solid #f0f0f1 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #1d2327 !important;
    box-shadow: none !important;
    text-align: left !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
    appearance: none !important;
}

.array-select-results button.array-select-result:last-child,
button.array-select-result:last-child {
    border-bottom: 0 !important;
}

.array-select-results button.array-select-result:hover,
.array-select-results button.array-select-result[aria-selected="true"],
button.array-select-result:hover,
button.array-select-result[aria-selected="true"] {
    background: #f0f6fc !important;
}

.array-select-result-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit;
    font: inherit;
}

.array-select-result-id {
    flex: 0 0 auto;
    color: #646970;
    font-size: 12px;
    font-weight: 600;
}

.array-select-results-hint {
    padding: 4px 9px;
    border-top: 1px solid #e2e4e7;
    background: #f6f7f7;
    color: #646970;
    font-size: 11px;
    font-style: italic;
    line-height: 1.25;
    text-align: center;
    cursor: default;
    user-select: none;
}

.array-select-message {
    min-height: 16px;
    margin-top: 3px;
    color: #646970;
    font-size: 12px;
}

@media (max-width: 600px) {
    .array-select-control-wrap {
        font-size: 13px;
    }

    .array-select-search-input {
        height: 34px;
        font-size: 13px;
    }

    .array-select-results {
        max-height: 170px;
    }

    .array-select-results button.array-select-result,
    button.array-select-result {
        min-height: 28px !important;
        padding: 5px 8px !important;
        font-size: 13px !important;
    }

    .array-select-results-hint {
        padding: 3px 8px;
        font-size: 10px;
    }
}
