@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';
@import '_content/Z.Blazor.Diagrams/Z.Blazor.Diagrams.bundle.scp.css';

/* /Pages/Common/Elements/Button.razor.rz.scp.css */
.btn[b-nql4qpttog] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.btn:focus-visible[b-nql4qpttog] {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* Primary variant */
.btn--primary[b-nql4qpttog] {
    background-color: var(--brand-primary);
    color: var(--absolute-white);
}

.btn--primary:hover[b-nql4qpttog] {
    background-color: var(--brand-secondary);
}

.btn--primary:active[b-nql4qpttog] {
    background-color: var(--brand-tertiary);
}

/* Secondary variant */
.btn--secondary[b-nql4qpttog] {
    background-color: var(--bg-accent);
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
}

.btn--secondary:hover[b-nql4qpttog] {
    background-color: var(--brand-surface-01);
}

.btn--secondary:active[b-nql4qpttog] {
    background-color: var(--brand-surface-02);
}

/* Ghost variant */
.btn--ghost[b-nql4qpttog] {
    background-color: transparent;
    color: var(--fg-gray-secondary);
    padding: 8px 12px;
}

.btn--ghost:hover[b-nql4qpttog] {
    color: var(--brand-primary);
    background-color: var(--fg-gray-transparent-quarternary);
}

.btn--ghost:active[b-nql4qpttog] {
    color: var(--brand-tertiary);
}

/* Danger variant */
.btn--danger[b-nql4qpttog] {
    background-color: var(--semantic-red-primary);
    color: var(--absolute-white);
}

.btn--danger:hover[b-nql4qpttog] {
    background-color: var(--semantic-red-secondary);
}

.btn--danger:active[b-nql4qpttog] {
    background-color: var(--semantic-red-tertiary);
}

/* Filled variant */
.btn--filled[b-nql4qpttog] {
    background-color: var(--brand-primary);
    color: var(--brand-on-color);
}

.btn--filled:hover[b-nql4qpttog] {
    background-color: var(--brand-secondary);
}

.btn--filled:active[b-nql4qpttog] {
    background-color: var(--brand-tertiary);
}

/* Disabled state */
.btn--disabled[b-nql4qpttog],
.btn--disabled:hover[b-nql4qpttog],
.btn--disabled:active[b-nql4qpttog] {
    background-color: var(--fg-gray-quinary);
    color: var(--fg-gray-quaternary);
    cursor: not-allowed;
    pointer-events: none;
}

.btn--secondary.btn--disabled[b-nql4qpttog] {
    border-color: var(--fg-gray-quaternary);
}

/* Icon styles */
.btn-icon[b-nql4qpttog] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
}

.btn-icon--left[b-nql4qpttog] {
    margin-right: -4px;
}

.btn-icon--right[b-nql4qpttog] {
    margin-left: -4px;
}

.btn-icon--center[b-nql4qpttog] {
    margin: 0;
}

/* Text wrapper */
.btn-text[b-nql4qpttog] {
    display: inline-block;
    color: inherit;
}
/* /Pages/Common/Elements/Checkbox.razor.rz.scp.css */
.checkbox[b-1jq1iw4la6] {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox input[type="checkbox"][b-1jq1iw4la6] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.checkbox input[type="checkbox"] + span[b-1jq1iw4la6]::before {
    content: '';
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1.5px solid var(--fg-gray-quinary);
    border-radius: 4px;
    margin-right: 0.75em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    vertical-align: middle;
}

.checkbox input[type="checkbox"]:not(:disabled):not(:checked) + span:hover[b-1jq1iw4la6]::before {
    border-color: #8293AB;
}

.checkbox input[type="checkbox"]:not(:disabled):active + span[b-1jq1iw4la6]::before {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.checkbox input[type="checkbox"]:focus:not(:checked) + span[b-1jq1iw4la6]::before {
    border-color: #8293AB;
}

.checkbox input[type="checkbox"]:checked + span[b-1jq1iw4la6]::before {
    border-color: var(--brand-primary);
    background-color: var(--brand-primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.checkbox input[type="checkbox"]:disabled:not(:checked) + span[b-1jq1iw4la6]::before {
    border-color: #bbbbbb;
    background-color: #e9ecef;
}

.checkbox input[type="checkbox"]:disabled:checked + span[b-1jq1iw4la6]::before {
    border-color: #bbbbbb;
    background-color: #e9ecef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23888' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
/* /Pages/Common/Elements/FormField.razor.rz.scp.css */
.form-field[b-1dayxd9m93] {
    display: grid;
    grid-template-columns: 4fr 12fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    min-height: 40px;
}

.form-field:last-child[b-1dayxd9m93] {
    margin-bottom: 0;
}

.form-field--section[b-1dayxd9m93] {
    margin-top: 40px;
}

.form-field--section:first-child[b-1dayxd9m93] {
    margin-top: 0;
}

.form-field__label[b-1dayxd9m93] {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fg-gray-primary);
    margin: 0;
    padding: 0;
}

.form-field__input[b-1dayxd9m93] {
    max-width: 50%;
}
/* /Pages/Common/Elements/FormSection.razor.rz.scp.css */
.form-section[b-kziiee511r] {
    margin-top: 40px;
}

.form-section:first-child[b-kziiee511r] {
    margin-top: 0;
}
/* /Pages/Common/Elements/FormSectionSlim.razor.rz.scp.css */
.form-section-slim[b-0f37w3f8on] {
    margin-top: 16px;
}

.form-section:first-child[b-0f37w3f8on] {
    margin-top: 0;
}
/* /Pages/Common/Elements/HtmxRadio.razor.rz.scp.css */
.radio-group-buttons[b-z7fxaqaos8] {
    display: flex;
    gap: 2px;
    background: var(--fg-gray-transparent-tertiary);
    border-radius: 4px;
    line-height: 22px;
    align-items: center;
    width: fit-content;
}

    /* Скрываем стандартный кружок */
    .radio-group-buttons input[type="radio"][b-z7fxaqaos8] {
        display: none;
    }

    /* Стилизуем label как прямоугольную кнопку */
    .radio-group-buttons label[b-z7fxaqaos8] {
        background-color: transparent;
        border: none;
        cursor: pointer;
        user-select: none;
        color: var(--fg-gray-secondary);
        font-weight: 450;
        margin: 5px;
        width: 130px;
    }

        /* Состояние при наведении */
        .radio-group-buttons label:hover[b-z7fxaqaos8] {
            background-color: var(--fg-gray-transparent-quarternary);
            border-radius: 4px;
        }

    /* Стиль активной (выбранной) кнопки */
    .radio-group-buttons input[type="radio"]:checked + label[b-z7fxaqaos8] {
        color: var(--brand-primary);
        font-weight: 450;
        border: 1px solid var(--absolute-white);
        border-color: var(--absolute-white);
        background-color: var(--absolute-white);
        border-radius: 4px;
        box-shadow: 0px 2px 4px 0px #27334B12;
    }

.radio-group-input-container[b-z7fxaqaos8] {
    vertical-align: middle;
    text-align: center;
}
/* /Pages/Common/Elements/NumericInput.razor.rz.scp.css */
.numeric-input[b-3u9r26otr0] {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.numeric-input__field[b-3u9r26otr0] {
    flex: 1;
    height: 40px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--fg-gray-quinary);
    border-radius: 6px;
    background-color: var(--bg-accent);
    padding: 0 40px 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--fg-gray-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    -moz-appearance: textfield;
}

/* Hide native spinner - Chrome, Safari, Edge */
.numeric-input__field[b-3u9r26otr0]::-webkit-outer-spin-button,
.numeric-input__field[b-3u9r26otr0]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.numeric-input__field[b-3u9r26otr0]::placeholder {
    color: var(--fg-gray-tertiary);
    opacity: 1;
}

.numeric-input__field:hover:not(:disabled):not(:focus)[b-3u9r26otr0] {
    border-color: var(--fg-gray-quaternary);
}

.numeric-input__field:focus[b-3u9r26otr0] {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-surface-01);
}

.numeric-input__field:disabled[b-3u9r26otr0] {
    background-color: var(--fg-gray-senary);
    color: var(--fg-gray-quaternary);
    cursor: not-allowed;
}

/* Clear button */
.numeric-input__clear[b-3u9r26otr0] {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--fg-gray-quaternary);
    transition: color 0.15s ease;
}

.numeric-input__clear:hover:not(:disabled)[b-3u9r26otr0] {
    color: var(--fg-gray-secondary);
}

.numeric-input__clear:disabled[b-3u9r26otr0] {
    cursor: not-allowed;
    opacity: 0.5;
}

.numeric-input__clear img[b-3u9r26otr0] {
    width: 16px;
    height: 16px;
}

/* Step controls container */
.numeric-input__controls[b-3u9r26otr0] {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    width: 32px;
    height: 32px;
}

/* Step buttons */
.numeric-input__btn[b-3u9r26otr0] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.numeric-input__btn:hover:not(:disabled)[b-3u9r26otr0] {
    opacity: 0.7;
}

.numeric-input__btn:active:not(:disabled)[b-3u9r26otr0] {
    opacity: 0.5;
}

.numeric-input__btn:disabled[b-3u9r26otr0] {
    cursor: not-allowed;
    opacity: 0.3;
}

.numeric-input__btn img[b-3u9r26otr0] {
    width: 32px;
    height: 16px;
}

/* Disabled state for entire component */
.numeric-input--disabled .numeric-input__btn[b-3u9r26otr0] {
    opacity: 0.3;
}
/* /Pages/Common/Elements/Select.razor.rz.scp.css */
.select[b-7gk5yyg9zf] {
    height: 40px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 36px 0 12px;
    border: 1px solid var(--fg-gray-quinary);
    border-radius: 6px;
    background-color: var(--bg-accent);
    font-size: 14px;
    line-height: 1.5;
    color: var(--fg-gray-primary);
    cursor: pointer;
    appearance: none;
    background-image: url("/Images/WorkDefinitions/Dropdown%20icon.svg");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.select:hover:not(:disabled):not(:focus)[b-7gk5yyg9zf] {
    border-color: var(--fg-gray-quaternary);
}

.select:focus[b-7gk5yyg9zf] {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-surface-01);
}

.select:disabled[b-7gk5yyg9zf] {
    background-color: var(--fg-gray-senary);
    color: var(--fg-gray-quaternary);
    cursor: not-allowed;
}

/* Table variant - borderless style for use inside table cells */
.select--table[b-7gk5yyg9zf] {
    border: 0;
}

.select--table:hover:not(:disabled):not(:focus)[b-7gk5yyg9zf] {
    border: 0;
}

.select--table:focus[b-7gk5yyg9zf] {
    border: 0;
}
/* /Pages/Common/Elements/TextInput.razor.rz.scp.css */
.text-input[b-hoet6hco4y] {
    height: 40px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--fg-gray-quinary);
    border-radius: 6px;
    background-color: var(--bg-accent);
    padding: 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--fg-gray-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.text-input[b-hoet6hco4y]::placeholder {
    color: var(--fg-gray-tertiary);
    opacity: 1;
}

.text-input:hover:not(:disabled):not(:focus)[b-hoet6hco4y] {
    border-color: var(--fg-gray-quaternary);
}

.text-input:focus[b-hoet6hco4y] {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-surface-01);
}

.text-input:disabled[b-hoet6hco4y] {
    background-color: var(--fg-gray-senary);
    color: var(--fg-gray-quaternary);
    cursor: not-allowed;
}

/* Error state - applied via .input-validation-error class from ASP.NET */
.text-input.input-validation-error[b-hoet6hco4y] {
    border-color: var(--semantic-red-primary);
}

.text-input.input-validation-error:focus[b-hoet6hco4y] {
    border-color: var(--semantic-red-primary);
    box-shadow: 0 0 0 3px var(--semantic-red-surface-01);
}

/* Table variant - borderless style for use inside table cells */
.text-input--table[b-hoet6hco4y] {
    border: 0;
    outline: 0;
}

.text-input--table:hover:not(:disabled):not(:focus)[b-hoet6hco4y] {
    border: 0;
}

.text-input--table:focus[b-hoet6hco4y] {
    border: 0;
}
/* /Pages/Common/GlobalFilter/AccessGroupGlobalFilter.razor.rz.scp.css */
.global-filter[b-vk68ap6o3c] {
    position: relative;
    height: 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: rgba(84, 101, 125, 0.20);
    cursor: pointer;
}

    .global-filter:hover[b-vk68ap6o3c] {
        border-width: 1px;
        border-style: solid;
        border-color: #54657D
    }

    .global-filter:focus[b-vk68ap6o3c] {
        outline: none;
        border-color: #54657D;
        background-color: rgba(84, 101, 125, 0.12);
    }

    .global-filter:disabled[b-vk68ap6o3c] {
        background: #F2F4F7;
        color: #B0B7C3;
        border-color: #E0E4EA;
        cursor: not-allowed;
        opacity: 1;
    }

.option[b-vk68ap6o3c] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 12px);
    cursor: pointer;
    margin-left: 12px;
}

.option-focused[b-vk68ap6o3c] {
    background-color: #f0f0f0;
}

.option-selected[b-vk68ap6o3c] {
    background-color: #F0F9FF;
    color: #2E85FF;
}

.option > img[b-vk68ap6o3c] {
    display: none;
    flex-shrink: 0;
}

.option-selected > img[b-vk68ap6o3c] {
    display: block;
    flex-shrink: 0;
}

.option > span[b-vk68ap6o3c] {
    display: inline-block;
    width: 85%;
    overflow-wrap: break-word;
}

.filter-icon-button[b-vk68ap6o3c] {
    height: 22px;
    width: 24px;
    position: relative;
    border-style: none;
    background: transparent;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clear-icon-button:hover[b-vk68ap6o3c] {
    background: #AFBACA20;
}

.filter-icon[b-vk68ap6o3c] {
    height: 22px;
    width: 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-text[b-vk68ap6o3c] {
    background: transparent;
    border-style: none;
    cursor: pointer;
    min-width: 0;
    color: #F0F2F5;
    text-overflow: ellipsis;
}

    .input-text[b-vk68ap6o3c]::placeholder {
        color: #8293AB;
    }

.search-input[b-vk68ap6o3c] {
    border: 1px solid transparent;
    border-radius: 4px;
    border-color: #E0E5EB;
    height: 24px;
    width: 90%;
    background-image: url(/Images/search.svg);
    background-repeat: no-repeat;
    background-position: 6px center;
    background-size: 16px 16px;
    text-indent: 24px;
}

    .search-input:hover[b-vk68ap6o3c] {
        border-width: 1px;
        border-style: solid;
        border-color: #54657D
    }

.custom-select-options[b-vk68ap6o3c] {
    position: absolute;
    z-index: 999;
    width: 100%;
    border-radius: 4px;
    background: #FFF;
    min-height: 16px;
    padding: 4px 0px 4px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge[b-vk68ap6o3c] {
    width: 22px;
    height: 22px;
    position: absolute;
    bottom: 7px;
    right: -4px;
}

.checkmark[b-vk68ap6o3c] {
    float: right;
}

.scrollable-list-container[b-vk68ap6o3c] {
    max-height: 240px;
    overflow-y: auto;
    overflow-x: clip;
    scrollbar-color: #9AA8BC #FFF;
    scrollbar-width: auto;
    color: #0A0C0F;
    width: 100%;
}

.search-container[b-vk68ap6o3c] {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#filterBadge > img[b-vk68ap6o3c] {
    position: absolute;
    top: -4px;
    left: 12px;
    user-select: none;
}
/* /Pages/Common/LabelPickerRow/LabelPickerRow.razor.rz.scp.css */
/* /Pages/Common/LicenseExpirationAlert/LicenseExpirationAlert.razor.rz.scp.css */
.license-notification[b-bf8q6kv6er] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: sticky;
    top: -10px;
    width: calc(100% + 2rem);
    margin-top: -10px;
    margin-left: -1rem;
    margin-right: -1rem;
    min-height: 24px;
    z-index: 1030;
    border-top: 1px solid var(--semantic-amber-border-01);
    border-bottom: 1px solid var(--semantic-amber-border-01);
    color: var(--fg-gray-primary);
    padding: 12px;
    gap: 0.5rem;
}

.license-notification--warning[b-bf8q6kv6er] {
    background: var(--semantic-amber-surface-01);
}

.license-notification--expired[b-bf8q6kv6er] {
    background: var(--semantic-red-surface-01);
    border-top: 1px solid var(--semantic-red-border-01);
    border-bottom: 1px solid var(--semantic-red-border-01);
}

.license-notification-action[b-bf8q6kv6er] {
    white-space: nowrap;
    color: var(--fg-gray-secondary);
    text-decoration: none;
    font-size: var(--Component-Button-Font-Font-size, 12px);
    font-style: normal;
    font-weight: var(--Component-Button-Font-Font-weight, 450);
    line-height: var(--Component-Button-Font-Font-line-height, 16px);
    padding: 4px 8px;
    border-radius: 4px;
}

.license-notification-action:hover[b-bf8q6kv6er],
.license-notification-action:focus[b-bf8q6kv6er],
.license-notification-action:active[b-bf8q6kv6er],
.license-notification-action:visited[b-bf8q6kv6er] {
    color: var(--fg-gray-secondary);
    text-decoration: none;
}

.license-notification-action:hover[b-bf8q6kv6er] {
    background-color: var(--fg-gray-transparent-quarternary);
}

.license-notification-admin-actions[b-bf8q6kv6er] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.license-notification-text[b-bf8q6kv6er] {
    font-size: var(--14, 14px);
    font-style: normal;
    font-weight: var(--400, 400);
    line-height: var(--20, 20px);
    padding-top: 2px;
    padding-bottom: 2px;
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.license-notification-master-id[b-bf8q6kv6er] {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.license-notification-copied-toast[b-bf8q6kv6er] {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--fg-gray-senary);
    color: var(--fg-gray-primary);
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 10;
}

.license-notification-copied-toast.is-visible[b-bf8q6kv6er] {
    opacity: 1;
    transform: translateY(0);
}

.license-notification-copied-toast--error[b-bf8q6kv6er] {
    background-color: var(--semantic-red-surface-01);
    color: var(--semantic-red-tertiary);
}

.license-notification-master-id-label[b-bf8q6kv6er] {
    font-size: var(--12, 12px);
    font-style: normal;
    font-weight: var(--700, 700);
    line-height: var(--16, 16px);
    color: var(--fg-gray-tertiary);
    white-space: nowrap;
}

.license-notification-master-id-value[b-bf8q6kv6er] {
    font-size: var(--12, 12px);
    line-height: var(--16, 16px);
    color: var(--fg-gray-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.license-notification-copy-btn[b-bf8q6kv6er] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
}

.license-notification-copy-btn:hover[b-bf8q6kv6er] {
    background-color: var(--fg-gray-transparent-quarternary);
}

.license-notification-copy-btn:focus[b-bf8q6kv6er],
.license-notification-copy-btn:focus-visible[b-bf8q6kv6er],
.license-notification-copy-btn:active[b-bf8q6kv6er] {
    outline: none;
    border: none;
    box-shadow: none;
}

.license-notification-divider[b-bf8q6kv6er] {
    width: 1px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.license-notification .btn-link[b-bf8q6kv6er] {
    text-decoration: none;
    padding: 0;
    line-height: 1;
}

.license-notification .bi[b-bf8q6kv6er] {
    line-height: 1;
}
/* /Pages/Common/Wizard/Wizard.razor.rz.scp.css */
.wizard[b-0illwzf9oo] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1 1 auto;
    min-height: 0;
}

/* Сообщение об ошибке */
.wizard-validation-error[b-0illwzf9oo] {
    margin: 0 1rem;
}


/* HTMX loading state */
.wizard-step-item.htmx-request .wizard-step-marker[b-0illwzf9oo] {
    opacity: 0.7;
}

.wizard-step-marker[b-0illwzf9oo] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bs-gray-300, #dee2e6);
    color: var(--bs-gray-600, #6c757d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.wizard-step-item.active .wizard-step-marker[b-0illwzf9oo] {
    background-color: var(--bs-primary, #0d6efd);
    color: white;
    border-color: var(--bs-primary, #0d6efd);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}

.wizard-step-item.completed .wizard-step-marker[b-0illwzf9oo] {
    background-color: var(--bs-success, #198754);
    color: white;
    border-color: var(--bs-success, #198754);
}

.wizard-step-item.disabled .wizard-step-marker[b-0illwzf9oo] {
    background-color: var(--bs-gray-200, #e9ecef);
    color: var(--bs-gray-500, #adb5bd);
    cursor: not-allowed;
}

.wizard-step-info[b-0illwzf9oo] {
    margin-top: 0.5rem;
    text-align: center;
}

.wizard-step-title[b-0illwzf9oo] {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bs-gray-700, #495057);
}

.wizard-step-item.active .wizard-step-title[b-0illwzf9oo] {
    color: var(--bs-primary, #0d6efd);
    font-weight: 600;
}

.wizard-step-item.completed .wizard-step-title[b-0illwzf9oo] {
    color: var(--bs-success, #198754);
}

.wizard-step-description[b-0illwzf9oo] {
    display: block;
    font-size: 0.75rem;
    color: var(--bs-gray-500, #adb5bd);
    margin-top: 0.25rem;
}

/* Содержимое шага */
.wizard-content[b-0illwzf9oo] {
    min-height: 200px;
    padding: 1rem;
    background-color: var(--bs-body-bg, #fff);
    border-radius: 0.375rem;
    flex-grow: 1;
}

.wizard-step-content[b-0illwzf9oo] {
    display: none;
}

.wizard-step-content.active[b-0illwzf9oo] {
    display: block;
    animation: wizardFadeIn-b-0illwzf9oo 0.3s ease;
}

@keyframes wizardFadeIn-b-0illwzf9oo {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Навигация */
.wizard-navigation[b-0illwzf9oo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid var(--bs-gray-200, #e9ecef);
    margin-top: auto;
    position: sticky;
    bottom: 0;
    background-color: var(--bs-body-bg, #fff);
    z-index: 1;
}

.wizard-navigation-left[b-0illwzf9oo],
.wizard-navigation-right[b-0illwzf9oo] {
    display: flex;
    gap: 0.5rem;
}

/* HTMX loading indicator on buttons */
.wizard-navigation button.htmx-request[b-0illwzf9oo] {
    opacity: 0.7;
    pointer-events: none;
}

.wizard-navigation button.htmx-request[b-0illwzf9oo]::after {
    content: '';
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 0.5rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: wizardSpin-b-0illwzf9oo 0.75s linear infinite;
}

@keyframes wizardSpin-b-0illwzf9oo {
    to {
        transform: rotate(360deg);
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .wizard-steps-list[b-0illwzf9oo] {
        flex-direction: column;
        gap: 1rem;
    }

    .wizard-steps-list[b-0illwzf9oo]::before {
        display: none;
    }

    .wizard-step-item[b-0illwzf9oo] {
        flex-direction: row;
        max-width: none;
        gap: 1rem;
    }

    .wizard-step-info[b-0illwzf9oo] {
        margin-top: 0;
        text-align: left;
    }

    .wizard-navigation[b-0illwzf9oo] {
        flex-direction: column;
        gap: 1rem;
    }

    .wizard-navigation-left[b-0illwzf9oo],
    .wizard-navigation-right[b-0illwzf9oo] {
        width: 100%;
        justify-content: center;
    }
}
/* /Pages/Common/Wizard/WizardNavigation.razor.rz.scp.css */
.wizard-navigation[b-maout4sja1] {
    height: 60px;
    flex-shrink: 0;
    flex-direction: row;
    display: flex;
    border-top: 1px solid var(--stroke-divider-secondary);
    padding-top: 14px;
}

.wizard-navigation-left[b-maout4sja1] {
    margin: 0;
}

.wizard-navigation-right[b-maout4sja1] {
    margin: 0 10px 0 10px;
}
/* /Pages/Common/Wizard/WizardStepIndicator.razor.rz.scp.css */
/* Индикатор шагов */
.wizard-steps-indicator[b-prndq4a4vs] {
    padding: 0 1rem;
    height: 40px;
    flex-shrink: 0;
}

.wizard-step-marker[b-prndq4a4vs] {
    width: 32px;
    height: 32px;
    background-color: var(--fg-gray-quinary);
    color: var(--fg-gray-tertiary);
    border-radius: 50%;
    padding: 0 8px 0 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    padding-top: 3px;
    font-family: 'Montserrat', sans-serif;
}
.wizard-step-item.active .wizard-step-marker[b-prndq4a4vs] {
    background-color: var(--brand-primary);
    color: var(--absolute-white);
}

.wizard-step-item.completed .wizard-step-marker[b-prndq4a4vs] {
    background-color: var(--brand-primary);
    color: var(--absolute-white);
}

.wizard-step-info[b-prndq4a4vs] {
    padding: 0 8px 0 8px;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
}

.wizard-step-decorator[b-prndq4a4vs] {
    height: 2px;
    width: 74%;
    border: none;
    background: var(--fg-gray-quinary);
}

.wizard-step-item.active .wizard-step-decorator[b-prndq4a4vs] {
    background: linear-gradient(to right, var(--brand-primary), var(--fg-gray-quinary) 30%);
}

.wizard-step-item.completed .wizard-step-decorator[b-prndq4a4vs] {
    background: var(--brand-primary);
}

.wizard-steps-list[b-prndq4a4vs] {
    display: flex;
    justify-content: space-between;
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
}

    .wizard-steps-list[b-prndq4a4vs]::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 40px;
        right: 40px;
        height: 2px;
        z-index: 0;
    }

.wizard-step-item[b-prndq4a4vs] {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

    .wizard-step-item.clickable[b-prndq4a4vs] {
        cursor: pointer;
    }

        .wizard-step-item.clickable:hover .wizard-step-marker[b-prndq4a4vs] {
            transform: scale(1.1);
        }

    .wizard-step-item.active[b-prndq4a4vs] {
        
    }
/* /Pages/EventSubscriptions/EventSubscriptionEditView.razor.rz.scp.css */
.event-subscription-form[b-hqy4s1f0cl] {
    flex-grow: 1;
}

.event-subscription-section[b-hqy4s1f0cl] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-section[b-hqy4s1f0cl] {
    margin: 40px 0 30px 0;
}

.form-field__value[b-hqy4s1f0cl] {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fg-gray-primary);
}

.form-field__link[b-hqy4s1f0cl] {
    font-size: 14px;
    line-height: 1.5;
    color: var(--brand-primary);
    text-decoration: none;
}

.form-field__link:hover[b-hqy4s1f0cl] {
    text-decoration: underline;
}

.separator-step-marker[b-hqy4s1f0cl] {
    width: 32px;
    height: 32px;
    background-color: var(--fg-gray-quinary);
    color: var(--fg-gray-tertiary);
    border-radius: 50%;
    padding: 0 8px 0 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    padding-top: 3px;
    font-family: 'Montserrat', sans-serif;
}

.separator-step-item .separator-step-marker[b-hqy4s1f0cl] {
    background-color: var(--brand-primary);
    color: var(--absolute-white);
}

.separator-step-info[b-hqy4s1f0cl] {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
    width: 200px;
}

.separator-step-decorator[b-hqy4s1f0cl] {
    height: 1px;
    width: 74%;
    border: none;
    background: linear-gradient(to right, var(--brand-primary), var(--fg-gray-quinary) 30%);
}

.separator-step-item[b-hqy4s1f0cl] {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 25px;
}

/* Сообщение об ошибке */
.model-validation-error[b-hqy4s1f0cl] {
    margin: 0 1rem;
}
/* /Pages/EventSubscriptions/EventSubscriptionHeaderComponent.razor.rz.scp.css */
.event-subscription-header.sticky-top[b-bd3b3hevnz] {
    top: calc(var(--license-banner-height, 10px) - 10px);
}

.event-subscription-header[b-bd3b3hevnz] {
    width: calc(100% + 2rem);
    margin-top: -10px;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: calc(1rem + 10px) 2rem 1rem 2rem;
}

.event-subscription-header.sticky-top[b-bd3b3hevnz] {
    top: calc(var(--license-banner-height, 10px) - 10px);
}

/* Icon sizes */
.event-subscription-header__icon--small[b-bd3b3hevnz] {
    width: 20px;
    height: 20px;
}

.event-subscription-header__icon--medium[b-bd3b3hevnz] {
    width: 24px;
    height: 24px;
}

.event-subscription-header__icon--small-white[b-bd3b3hevnz] {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Back button */
.event-subscription-header__back-btn[b-bd3b3hevnz] {
    transition: opacity 0.2s ease;
}

.event-subscription-header__back-btn:hover[b-bd3b3hevnz] {
    opacity: 0.7;
}

/* Breadcrumb */
.event-subscription-header__breadcrumb-link[b-bd3b3hevnz] {
    color: var(--fg-gray-primary);
}

.event-subscription-header__breadcrumb-link:hover[b-bd3b3hevnz] {
    text-decoration: underline !important;
}

/* Title */
.event-subscription-header__title[b-bd3b3hevnz] {
    color: var(--fg-gray-primary);
}

/* Action links */
.event-subscription-header__action-link[b-bd3b3hevnz] {
    transition: all 0.2s ease;
    padding: 6px 10px;
    border-radius: 4px;
    color: var(--fg-gray-primary);
}

.event-subscription-header__action-link:hover[b-bd3b3hevnz] {
    background-color: var(--fg-gray-transparent-quarternary);
    text-decoration: none !important;
}

/* Title group */
.event-subscription-header__title-group[b-bd3b3hevnz] {
    gap: 1rem;
}

/* Actions */
.event-subscription-header__actions[b-bd3b3hevnz] {
    gap: 0.5rem;
}

/* Edit button */
.event-subscription-header__edit-btn[b-bd3b3hevnz] {
    padding: 8px 16px;
}
/* /Pages/EventSubscriptions/EventSubscriptionView.razor.rz.scp.css */
.event-subscription-form[b-dhzyclmdsd] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.event-subscription-section[b-dhzyclmdsd] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.form-field__value[b-dhzyclmdsd] {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fg-gray-primary);
}

.form-field__link[b-dhzyclmdsd] {
    font-size: 14px;
    line-height: 1.5;
    color: var(--brand-primary);
    text-decoration: none;
}

.form-field__link:hover[b-dhzyclmdsd] {
    text-decoration: underline;
}
/* /Pages/Layout/MainLayout.razor.rz.scp.css */
.page[b-41sodgwhfp] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-41sodgwhfp] {
    flex: 1;
}

.sidebar[b-41sodgwhfp] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-41sodgwhfp] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-41sodgwhfp]  a, .top-row[b-41sodgwhfp]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-41sodgwhfp]  a:hover, .top-row[b-41sodgwhfp]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-41sodgwhfp]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-41sodgwhfp] {
        justify-content: space-between;
    }

        .top-row[b-41sodgwhfp]  a, .top-row[b-41sodgwhfp]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-41sodgwhfp] {
        flex-direction: row;
    }

    .sidebar[b-41sodgwhfp] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-41sodgwhfp] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-41sodgwhfp]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-41sodgwhfp], article[b-41sodgwhfp] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-41sodgwhfp] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-41sodgwhfp] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Pages/Layout/WorkflowsLayout.razor.rz.scp.css */
.page[b-b61t3wiis3] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.sidebar[b-b61t3wiis3] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-b61t3wiis3] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-b61t3wiis3]  a, .top-row[b-b61t3wiis3]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-b61t3wiis3]  a:hover, .top-row[b-b61t3wiis3]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-b61t3wiis3]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row[b-b61t3wiis3] {
        justify-content: space-between;
    }

    .top-row[b-b61t3wiis3]  a, .top-row[b-b61t3wiis3]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-b61t3wiis3] {
        flex-direction: row;
    }

    .sidebar[b-b61t3wiis3] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-b61t3wiis3] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-b61t3wiis3]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-b61t3wiis3], article[b-b61t3wiis3] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-b61t3wiis3] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-b61t3wiis3] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Pages/WorkDefinitions/Components/AgentGroupsConfigurationFieldset.razor.rz.scp.css */
/* /Pages/WorkDefinitions/Components/HeaderComponent.razor.rz.scp.css */
.work-definition-header[b-r43a58ou3v] {
    width: calc(100% + 2rem);
    margin-top: -10px;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: calc(1rem + 10px) 2rem 1rem 2rem;
}

.work-definition-header.sticky-top[b-r43a58ou3v] {
    top: calc(var(--license-banner-height, 10px) - 10px);
}

/* Icon sizes */
.work-definition-header__icon--small[b-r43a58ou3v] {
    width: 20px;
    height: 20px;
}

.work-definition-header__icon--medium[b-r43a58ou3v] {
    width: 24px;
    height: 24px;
}

.work-definition-header__icon--small-white[b-r43a58ou3v] {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Back button */
.work-definition-header__back-btn[b-r43a58ou3v] {
    transition: opacity 0.2s ease;
}

.work-definition-header__back-btn:hover[b-r43a58ou3v] {
    opacity: 0.7;
}

/* Breadcrumb */
.work-definition-header__breadcrumb-link[b-r43a58ou3v] {
    color: var(--fg-gray-primary);
}

.work-definition-header__breadcrumb-link:hover[b-r43a58ou3v] {
    text-decoration: underline !important;
}

/* Title */
.work-definition-header__title[b-r43a58ou3v] {
    color: var(--fg-gray-primary);
}

/* Action links */
.work-definition-header__action-link[b-r43a58ou3v] {
    transition: all 0.2s ease;
    padding: 6px 10px;
    border-radius: 4px;
    color: var(--fg-gray-primary);
}

.work-definition-header__action-link:hover[b-r43a58ou3v] {
    background-color: var(--fg-gray-transparent-quarternary);
    text-decoration: none !important;
}

/* Title group */
.work-definition-header__title-group[b-r43a58ou3v] {
    gap: 1rem;
}

/* Actions */
.work-definition-header__actions[b-r43a58ou3v] {
    gap: 0.5rem;
}

/* Edit button */
.work-definition-header__edit-btn[b-r43a58ou3v] {
    padding: 8px 16px;
}
/* /Pages/WorkDefinitions/Components/Parameter.razor.rz.scp.css */
/* Parameter Row Styling */

.parameters-table__row[b-kpv66053lu] {
    border-bottom: 1px solid var(--stroke-divider-secondary);
}

.parameters-table__row:last-child[b-kpv66053lu] {
    border-bottom: none;
}

.parameters-table__cell[b-kpv66053lu] {
    padding: 12px 16px;
    vertical-align: middle;
    border-right: 1px solid var(--stroke-divider-secondary);
    overflow: clip;
}

.parameters-table__cell:last-child[b-kpv66053lu] {
    border-right: none;
}

.parameters-table__cell--parameter[b-kpv66053lu] {
    width: 25%;
}

.parameters-table__cell--source[b-kpv66053lu] {
    width: 30%;
}

.parameters-table__cell--value[b-kpv66053lu] {
    width: auto;
}

.parameters-table__cell--actions[b-kpv66053lu] {
    width: 48px;
    padding: 12px 8px;
    text-align: center;
}

/* Delete button */
.parameters-table__delete-btn[b-kpv66053lu] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.15s ease;
}

.parameters-table__delete-btn:hover[b-kpv66053lu] {
    opacity: 1;
}

.parameters-table__delete-icon[b-kpv66053lu] {
    width: 16px;
    height: 16px;
}
/* /Pages/WorkDefinitions/Components/ParametersTable.razor.rz.scp.css */
/* Parameters Table - BEM styling */

.parameters-table[b-exe7cx2022] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    border: 1px solid var(--stroke-divider-secondary);
    border-radius: 8px;
    overflow: hidden;
}

/* Table Header */
.parameters-table__header[b-exe7cx2022] {
    background-color: var(--fg-gray-senary);
}

.parameters-table__header-cell[b-exe7cx2022] {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--fg-gray-secondary);
    border: 1px solid var(--stroke-divider-secondary);
}

.parameters-table__header-content[b-exe7cx2022] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    overflow: clip;
}

.parameters-table__sort-icon[b-exe7cx2022] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Table Body - use ::deep for child component elements */
[b-exe7cx2022] .parameters-table__row {
    border-bottom: 1px solid var(--stroke-divider-secondary);
    background-color: var(--bg-accent);
    /* Override alternating row backgrounds from common-style.css */
}

[b-exe7cx2022] .parameters-table__cell {
    padding: 12px 16px;
    vertical-align: middle;
    border: 1px solid var(--stroke-divider-secondary);
    overflow: clip;
}


[b-exe7cx2022] .parameters-table__cell--actions {
    width: 48px;
    padding: 12px 8px;
    text-align: center;
}

/* Column widths */
.parameters-table__header-cell--parameter[b-exe7cx2022],
[b-exe7cx2022] .parameters-table__cell--parameter {
    width: 25%;
}

.parameters-table__header-cell--source[b-exe7cx2022],
[b-exe7cx2022] .parameters-table__cell--source {
    width: 30%;
}

.parameters-table__header-cell--value[b-exe7cx2022],
[b-exe7cx2022] .parameters-table__cell--value {
    width: auto;
}

.parameters-table__cell--actions[b-exe7cx2022] {
    width: 48px;
}

/* Select styling - use ::deep for child component elements */
[b-exe7cx2022] .parameters-table__select {
    width: 100%;
    height: 40px;
    padding: 0 36px 0 12px;
    border: 1px solid var(--fg-gray-quinary);
    border-radius: 6px;
    background-color: var(--bg-accent);
    font-size: 14px;
    line-height: 1.5;
    color: var(--fg-gray-primary);
    cursor: pointer;
    appearance: none;
    background-image: url("/Images/WorkDefinitions/Dropdown%20icon.svg");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

[b-exe7cx2022] .parameters-table__select:hover:not(:disabled):not(:focus) {
    border-color: var(--fg-gray-quaternary);
}

[b-exe7cx2022] .parameters-table__select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-surface-01);
}

[b-exe7cx2022] .parameters-table__select:disabled {
    background-color: var(--fg-gray-senary);
    color: var(--fg-gray-quaternary);
    cursor: not-allowed;
}

/* Delete button - use ::deep for child component elements */
[b-exe7cx2022] .parameters-table__delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.15s ease;
}

[b-exe7cx2022] .parameters-table__delete-btn:hover {
    opacity: 1;
}

[b-exe7cx2022] .parameters-table__delete-icon {
    width: 16px;
    height: 16px;
}

/* Actions row below the table */
.parameters-table__actions[b-exe7cx2022] {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 16px;
}

/* Add button - blue circular icon */
.parameters-table__add-btn[b-exe7cx2022] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.parameters-table__add-btn:hover[b-exe7cx2022] {
    opacity: 0.8;
}

.parameters-table__add-btn img[b-exe7cx2022] {
    width: 32px;
    height: 32px;
}

/* Data type label */
.parameters-table__data-type[b-exe7cx2022] {
    font-size: 14px;
    color: var(--fg-gray-tertiary);
}

/* Hidden inputs */
.parameters-table__hidden-input[b-exe7cx2022] {
    display: none;
}
/* /Pages/WorkDefinitions/Components/ParametersTableReadOnly.razor.rz.scp.css */
.parameters-table[b-7jza87nirm] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    border: 1px solid var(--stroke-divider-secondary);
    border-radius: 8px;
    overflow: hidden;
}

.parameters-table__header[b-7jza87nirm] {
    background-color: var(--fg-gray-senary);
}

.parameters-table__header-cell[b-7jza87nirm] {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--fg-gray-secondary);
    border: 1px solid var(--stroke-divider-secondary);
}

.parameters-table__header-content[b-7jza87nirm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    overflow: clip;
}

.parameters-table__sort-icon[b-7jza87nirm] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.parameters-table__row[b-7jza87nirm] {
    border-bottom: 1px solid var(--stroke-divider-secondary);
    background-color: var(--bg-accent);
}

.parameters-table__cell[b-7jza87nirm] {
    padding: 12px 16px;
    vertical-align: middle;
    border: 1px solid var(--stroke-divider-secondary);
    overflow: clip;
}

.parameters-table__header-cell--parameter[b-7jza87nirm],
.parameters-table__cell--parameter[b-7jza87nirm] {
    width: 25%;
}

.parameters-table__header-cell--source[b-7jza87nirm],
.parameters-table__cell--source[b-7jza87nirm] {
    width: 30%;
}

.parameters-table__header-cell--value[b-7jza87nirm],
.parameters-table__cell--value[b-7jza87nirm] {
    width: auto;
}

.parameters-table__cell-text[b-7jza87nirm] {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fg-gray-primary);
}
/* /Pages/WorkDefinitions/Components/WorkDefinitionForm.razor.rz.scp.css */
/* /Pages/WorkDefinitions/Components/WorkDefinitionView.razor.rz.scp.css */
.form-field__value[b-enz9kwyji0] {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fg-gray-primary);
}

.form-field__link[b-enz9kwyji0] {
    font-size: 14px;
    line-height: 1.5;
    color: var(--brand-primary);
    text-decoration: none;
}

.form-field__link:hover[b-enz9kwyji0] {
    text-decoration: underline;
}
/* /Pages/Workflows/Components/ActivityPicker/ActivityBlockGroupListItem.razor.rz.scp.css */
.activity-block-group-list-item__icon[b-hbdqe7igkc] {
    height: 24px;
    width: 24px;
}
/* /Pages/Workflows/Components/ActivityPicker/ActivityBlockListItem.razor.rz.scp.css */
.activity-block-list-item[b-h6wc0s6uop] {
    cursor: pointer;
}

.activity-block-list-item:hover[b-h6wc0s6uop] {
    background-color: #f5f7f9;
}

.activity-block-list-item__icon[b-h6wc0s6uop] {
    height: 24px;
    width: 24px;
    fill: #0A0C0F;
}
/* /Pages/Workflows/Components/ActivityPicker/WorkflowActivityPicker.razor.rz.scp.css */
.btn-clear-search:hover[b-ouvdahyhua] {
    color: var(--bs-primary) !important;
}
/* /Pages/Workflows/Components/Blocks/ActivityNodeConditional.razor.rz.scp.css */
.activity-node[b-6uovs7chat] {
    width: 360px;
    height: 120px;
    border-radius: 4px;
    border: 2px solid #E0E5EB;
    background-color: #FFFFFF;
    display: grid;
    grid-template-rows: 20% 40% 40%;
    grid-template-columns: 10% 80% 10%;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.activity-node_in_progress[b-6uovs7chat] {
    border-color: #9B8A53 !important;
}

.activity-node_failed[b-6uovs7chat] {
    border-color: #DA5752 !important;
}

.activity-node_succeed[b-6uovs7chat] {
    border-color: #62CB77 !important;
}

.activity-node_blocked[b-6uovs7chat] {
    border-color: #FFAE00 !important;
}

.activity-node_undefined[b-6uovs7chat] {
    border-style: dotted !important;
    border-color: #DA5752 !important;
}

.activity-node_selected[b-6uovs7chat] {
    position: relative;
    border: 0px;
    outline: 1px solid #2E85FF;
    outline-offset: 0;
}

.corner-handle[b-6uovs7chat] {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0px;
    background: #FFF;
    pointer-events: none;
    outline: 1px solid #2E85FF;
    outline-offset: 0;
}

.corner-handle_tl[b-6uovs7chat] {
    top: -4px;
    left: -4px;
}

.corner-handle_tr[b-6uovs7chat] {
    top: -4px;
    right: -4px;
}

.corner-handle_bl[b-6uovs7chat] {
    bottom: -4px;
    left: -4px;
}

.corner-handle_br[b-6uovs7chat] {
    bottom: -4px;
    right: -4px;
}

/* Firefox: SVG-рамка через ::after */
@supports (-moz-appearance: none) {
    .activity-node_selected[b-6uovs7chat] {
        outline: none;
    }

        .activity-node_selected[b-6uovs7chat]::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='100%' height='100%' fill='none' stroke='%232E85FF' stroke-width='1' stroke-linecap='square' /%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            pointer-events: none;
            z-index: 0;
        }

    .corner-handle[b-6uovs7chat] {
        outline: none;
    }

        .corner-handle[b-6uovs7chat]::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='100%' height='100%' fill='none' stroke='%232E85FF' stroke-width='1' stroke-linecap='square' /%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            pointer-events: none;
        }
}

.activity-node__left-line[b-6uovs7chat] {
    grid-row: 1/ 4;
    grid-column: 1 / 2;
    background-color: #F6D6D5;
    border-radius: 3px 0 0 3px;
}

.activity-node__right-line[b-6uovs7chat] {
    grid-row: 1 / 4;
    grid-column: 3 / 4;
    background-color: #D9F2DE;
    border-radius: 0 3px 3px 0;
}

.activity-feature[b-6uovs7chat] {
    position: absolute;
    left: 50%;
    top: 0;
    width: 80px;
    height: 40px;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.activity-feature__conditional-rhombus[b-6uovs7chat] {
    width: 100%;
    height: 100%;
    background: #E0E5EB;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    justify-content: center; /* Centers the text horizontally */
    align-items: center; /* Centers the text vertically */
    z-index: 1;
}

.activity-feature__text[b-6uovs7chat] {
    margin: 0;
    line-height: 1rem;
}

.activity-header[b-6uovs7chat] {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    padding-left: 10%;
    padding-right: 10%;
    max-width: 80%;
}

.activity-header__block-name[b-6uovs7chat] {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.activity-header__block-type[b-6uovs7chat] {
    font-size: 10px;
    margin-bottom: 0.1rem;
}

.activity-body[b-6uovs7chat] {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    line-height: 1.15rem;
    padding: 0.15rem 10%;
    max-width: 80%;
}

.activity-body__block-parameter[b-6uovs7chat] {
    margin-bottom: 0.15rem;
    margin-right: 0.5rem;
    font-size: 12px;
    color: #000000;
}

.activity-body__block-parameter span[b-6uovs7chat] {
    text-overflow: ellipsis;
    max-width: 130px;
    overflow: hidden;
}

.activity-body__parameter-value[b-6uovs7chat] {
    color: #2E85FF;
}

/* Если наведена мышка на блок -- показываем порты */

.activity-node:hover[b-6uovs7chat]  .diagram-port {
    visibility: visible;
}

[b-6uovs7chat] .diagram-port {
    position: absolute;
    width: 12px;
    height: 12px;
    visibility: hidden;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 1;
}

[b-6uovs7chat] .diagram-port.top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

[b-6uovs7chat] .diagram-port.bottom {
    top: 100%;
    left: 50%;
    transform: translateY(-50%);
}

[b-6uovs7chat] .diagram-port.left {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

[b-6uovs7chat] .diagram-port.right {
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}

/* Если у порта есть связь, то не скрываем его */
/* Также этот селектор отвечает за вложенную в PortRenderer компоненту порта */

[b-6uovs7chat] .diagram-port.has-links {
    visibility: visible;
}

/* Для блоков с ветвлением: всегда показываем левый и правый порты,
   чтобы пользователь видел возможность подключения обеих стрелок без наведения курсора */
[b-6uovs7chat] .diagram-port.left,
[b-6uovs7chat] .diagram-port.right {
    visibility: visible;
}
/* /Pages/Workflows/Components/Blocks/ActivityNodeParallel.razor.rz.scp.css */
[b-3no8rnmawb] {
    --fg-brand-primary: #2E85FF;
}

.activity-node[b-3no8rnmawb] {
    min-width: 360px;
    border-radius: 4px;
    border: 2px solid #E0E5EB;
    background-color: #FFFFFF;
    display: grid;
    grid-template-columns: 10% auto 10%;
    grid-template-rows: 38px auto 38px; /* 84px * 40% = 38 */
    row-gap: .5rem;
}

.activity-node_in_progress[b-3no8rnmawb] {
    border-color: #FFAE00 !important;
}

.activity-node_failed[b-3no8rnmawb] {
    border-color: #DA5752 !important;
}

.activity-node_succeed[b-3no8rnmawb] {
    border-color: #62CB77 !important;
}

.activity-node_blocked[b-3no8rnmawb] {
    border-color: #FFAE00 !important;
}

.activity-node_undefined[b-3no8rnmawb] {
    border-style: dotted !important;
    border-color: #DA5752 !important;
}


.activity-node_selected[b-3no8rnmawb] {
    position: relative;
    border: 0px;
    outline: 1px solid #2E85FF;
    outline-offset: 0;
}

.corner-handle[b-3no8rnmawb] {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0px;
    background: #FFF;
    pointer-events: none;
    outline: 1px solid #2E85FF;
    outline-offset: 0;
}

.corner-handle_tl[b-3no8rnmawb] {
    top: -4px;
    left: -4px;
}

.corner-handle_tr[b-3no8rnmawb] {
    top: -4px;
    right: -4px;
}

.corner-handle_bl[b-3no8rnmawb] {
    bottom: -4px;
    left: -4px;
}

.corner-handle_br[b-3no8rnmawb] {
    bottom: -4px;
    right: -4px;
}

/* Firefox: SVG-рамка через ::after */
@supports (-moz-appearance: none) {
    .activity-node_selected[b-3no8rnmawb] {
        outline: none;
    }

        .activity-node_selected[b-3no8rnmawb]::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='100%' height='100%' fill='none' stroke='%232E85FF' stroke-width='1' stroke-linecap='square' /%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            pointer-events: none;
            z-index: 0;
        }

    .corner-handle[b-3no8rnmawb] {
        outline: none;
    }

        .corner-handle[b-3no8rnmawb]::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='100%' height='100%' fill='none' stroke='%232E85FF' stroke-width='1' stroke-linecap='square' /%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            pointer-events: none;
        }
}

.activity-header[b-3no8rnmawb] {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.activity-icon[b-3no8rnmawb] {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    padding: 0.45rem;
}

.activity-icon__activity-svg[b-3no8rnmawb] {
    -webkit-user-drag: none;
}

.activity-header__block-name[b-3no8rnmawb] {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.activity-header__block-type[b-3no8rnmawb] {
    font-size: 10px;
    margin-bottom: 0.1rem;
}

.activity-body[b-3no8rnmawb] {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
    line-height: 1.15rem;
}

.activity-body__work-item[b-3no8rnmawb] {
    margin-bottom: 0.15rem;
    margin-right: 0.5rem;
    font-size: 12px;
}

.activity-body__work-item-header[b-3no8rnmawb] {
    color: var(--fg-brand-primary);
}

.activity-body__work-item-params[b-3no8rnmawb] {
    color: var(--fg-brand-primary);
}

.activity-footer[b-3no8rnmawb] {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
}

.activity-footer__add-work-item-btn[b-3no8rnmawb] {
    border-color: var(--fg-brand-primary);
    border-style: dashed;
}

/* Если наведена мышка на блок -- показываем порты */
.activity-node:hover[b-3no8rnmawb]  .diagram-port {
    visibility: visible;
}

[b-3no8rnmawb] .diagram-port {
    position: absolute;
    width: 12px;
    height: 12px;
    visibility: hidden;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 1;
}

[b-3no8rnmawb] .diagram-port.left {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

[b-3no8rnmawb] .diagram-port.right {
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}

/* Если у порта есть связь, то не скрываем его */
/* Также этот селектор отвечает за вложенную в PortRenderer компоненту порта */
[b-3no8rnmawb] .diagram-port.has-links {
    visibility: visible;
}
/* /Pages/Workflows/Components/Blocks/ActivityNodeRegular.razor.rz.scp.css */
.activity-node[b-6h4ewh251t] {
    width: calc(360px + 0.9rem);
    height: 120px;
    border-radius: 4px;
    border: 2px solid #E0E5EB;
    background-color: #FFFFFF;
    display: grid;
    grid-template-columns: 13% auto;
    grid-template-rows: 40% auto;
    padding: 0.45rem;
}

.activity-node_in_progress[b-6h4ewh251t] {
    border-color: #FFAE00 !important;
}

.activity-node_failed[b-6h4ewh251t] {
    border-color: #DA5752 !important;
}

.activity-node_succeed[b-6h4ewh251t] {
    border-color: #62CB77 !important;
}

.activity-node_blocked[b-6h4ewh251t] {
    border-color: #FFAE00 !important;
}

.activity-node_undefined[b-6h4ewh251t] {
    border-style: dotted !important;
    border-color: #DA5752 !important;
}

.activity-node_selected[b-6h4ewh251t] {
    position: relative;
    border: 0px;
    outline: 1px solid #2E85FF;
    outline-offset: 0;
}

.corner-handle[b-6h4ewh251t] {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0px;
    background: #FFF;
    pointer-events: none;
    outline: 1px solid #2E85FF;
    outline-offset: 0;
}

.corner-handle_tl[b-6h4ewh251t] {
    top: -4px;
    left: -4px;
}

.corner-handle_tr[b-6h4ewh251t] {
    top: -4px;
    right: -4px;
}

.corner-handle_bl[b-6h4ewh251t] {
    bottom: -4px;
    left: -4px;
}

.corner-handle_br[b-6h4ewh251t] {
    bottom: -4px;
    right: -4px;
}

/* Firefox: SVG-рамка через ::after */
@supports (-moz-appearance: none) {
    .activity-node_selected[b-6h4ewh251t] {
        outline: none;
    }

        .activity-node_selected[b-6h4ewh251t]::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='100%' height='100%' fill='none' stroke='%232E85FF' stroke-width='1' stroke-linecap='square' /%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            pointer-events: none;
            z-index: 0;
        }

    .corner-handle[b-6h4ewh251t] {
        outline: none;
    }

        .corner-handle[b-6h4ewh251t]::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='100%' height='100%' fill='none' stroke='%232E85FF' stroke-width='1' stroke-linecap='square' /%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            pointer-events: none;
        }
}

.activity-header[b-6h4ewh251t] {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.activity-icon[b-6h4ewh251t] {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.45rem;
}

.activity-icon__activity-svg[b-6h4ewh251t] {
    object-fit: contain;
    height: 100%;
    -webkit-user-drag: none;
}

.activity-header__block-name[b-6h4ewh251t] {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.activity-header__block-type[b-6h4ewh251t] {
    font-size: 10px;
    margin-bottom: 0.1rem;
}

.activity-body[b-6h4ewh251t] {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
    line-height: 1.15rem;
}

.activity-body__block-parameter[b-6h4ewh251t] {
    margin-bottom: 0.15rem;
    margin-right: 0.5rem;
    font-size: 12px;
    display: flex;
    max-width: 310px;
}

.activity-body__block-parameter span[b-6h4ewh251t] {
    text-overflow: ellipsis;
    max-width: 130px;
    overflow: hidden;
}

.activity-body__parameter-value[b-6h4ewh251t] {
    color: #2E85FF;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: inline;
    margin: 0 0 0 0.2rem;
}

/* Если наведена мышка на блок -- показываем порты */
.activity-node:hover[b-6h4ewh251t]  .diagram-port {
    visibility: visible;
}

[b-6h4ewh251t] .diagram-port {
    position: absolute;
    width: 12px;
    height: 12px;
    visibility: hidden;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 1;
}

[b-6h4ewh251t] .diagram-port.top {
    top: 0;
    left: 50%;
    transform: translateY(-50%);
}

[b-6h4ewh251t] .diagram-port.bottom {
    top: 100%;
    left: 50%;
    transform: translateY(-50%);
}

[b-6h4ewh251t] .diagram-port.left {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

[b-6h4ewh251t] .diagram-port.right {
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}

/* Если у порта есть связь, то не скрываем его */
/* Также этот селектор отвечает за вложенную в PortRenderer компоненту порта */
[b-6h4ewh251t] .diagram-port.has-links {
    visibility: visible;
}

/* Для блоков с ветвлением (путь успеха и путь ошибки): всегда показываем левый и правый порты,
   чтобы пользователь видел возможность подключения обеих стрелок без наведения курсора */
.activity-node--conditional[b-6h4ewh251t]  .diagram-port.left,
.activity-node--conditional[b-6h4ewh251t]  .diagram-port.right {
    visibility: visible;
}
/* /Pages/Workflows/Components/Blocks/ActivityNodeStart.razor.rz.scp.css */
.activity-node[b-hrphro3npi] {
    width: 280px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #62CB77;
    background-color: #ECF9EE;
    display: grid;
    /* Чтобы занимала столько же места, сколько в обычном блоке. (360px * 13%) = (280px * 16%) */
    grid-template-columns: 13% auto;
    align-items: center;
    padding: 0.45rem;
}

.activity-node_in_progress[b-hrphro3npi] {
    border-color: #FFAE00 !important;
}

.activity-node_failed[b-hrphro3npi] {
    border-color: #DA5752 !important;
}

.activity-node_succeed[b-hrphro3npi] {
    border-color: #62CB77 !important;
}

.activity-node_blocked[b-hrphro3npi] {
    border-color: #FFAE00 !important;
}

.activity-node_undefined[b-hrphro3npi] {
    border-style: dotted !important;
    border-color: #DA5752 !important;
}

.activity-node_selected[b-hrphro3npi] {
    position: relative;
    border: 0px;
    outline: 1px solid #2E85FF;
    outline-offset: 0;
}

.corner-handle[b-hrphro3npi] {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0px;
    background: #FFF;
    pointer-events: none;
    outline: 1px solid #2E85FF;
    outline-offset: 0;
}

.corner-handle_tl[b-hrphro3npi] {
    top: -4px;
    left: -4px;
}

.corner-handle_tr[b-hrphro3npi] {
    top: -4px;
    right: -4px;
}

.corner-handle_bl[b-hrphro3npi] {
    bottom: -4px;
    left: -4px;
}

.corner-handle_br[b-hrphro3npi] {
    bottom: -4px;
    right: -4px;
}

/* Firefox: SVG-рамка через ::after */
@supports (-moz-appearance: none) {
    .activity-node_selected[b-hrphro3npi] {
        outline: none;
    }

        .activity-node_selected[b-hrphro3npi]::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='100%' height='100%' fill='none' stroke='%232E85FF' stroke-width='1' stroke-linecap='square' /%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            pointer-events: none;
            z-index: 0;
        }

    .corner-handle[b-hrphro3npi] {
        outline: none;
    }

        .corner-handle[b-hrphro3npi]::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='100%' height='100%' fill='none' stroke='%232E85FF' stroke-width='1' stroke-linecap='square' /%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            pointer-events: none;
        }
}

.activity-header[b-hrphro3npi] {
    grid-column: 2 / 3;
}

.activity-icon[b-hrphro3npi] {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    grid-column: 1 / 2;
    padding: 0.45rem;
}

.activity-icon__activity-svg[b-hrphro3npi] {
    object-fit: contain;
    height: 100%;
    -webkit-user-drag: none;
}

.activity-header__block-name[b-hrphro3npi] {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 0.75rem;
}

/* Если наведена мышка на блок -- показываем порты */
.activity-node:hover[b-hrphro3npi]  .diagram-port {
    visibility: visible;
}

[b-hrphro3npi] .diagram-port {
    position: absolute;
    width: 12px;
    height: 12px;
    visibility: hidden;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 1;
}

[b-hrphro3npi] .diagram-port.right {
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}

/* Если у порта есть связь, то не скрываем его */
/* Также этот селектор отвечает за вложенную в PortRenderer компоненту порта */
[b-hrphro3npi] .diagram-port.has-links {
    visibility: visible;
}
/* /Pages/Workflows/Components/Blocks/ActivityPort.razor.rz.scp.css */
/* По умолчанию порты скрыты */
.activity-node__activity-port[b-fglc3w6yz2] {
    width: 100%;
    height: 100%;
    border-radius: 50%;

    &[class*="_right"][data-parent-activity-type="regular"] {
        background-color: darkgray;
    }

    &[class*="_left"][data-parent-activity-type="regular"][b-fglc3w6yz2] {
        background-color: white;
        border: 2px solid darkgray;
    }

    &[class*="_bottom"][data-parent-activity-type="regular"][b-fglc3w6yz2] {
        background-color: white;
        border: 2px solid darkgray;
    }

    &[class*="_right"][data-parent-activity-type="conditional"][b-fglc3w6yz2] {
        background-color: #c1ecaa;
    }

    &[class*="_bottom"][data-parent-activity-type="conditional"][b-fglc3w6yz2] {
        background-color: white;
        border: 2px solid darkgray;
    }

    &[class*="_right"][data-parent-activity-type="group"][b-fglc3w6yz2] {
        background-color: darkgray;
    }

    &[class*="_left"][data-parent-activity-type="conditional"][data-is-enabled="true"][b-fglc3w6yz2] {
        background-color: #ecb8b6;
    }

    &[class*="_left"][data-parent-activity-type="conditional"][data-is-enabled="false"][b-fglc3w6yz2] {
        background-color: black;
    }

    &[class*="_left"][data-parent-activity-type="group"][b-fglc3w6yz2] {
        background-color: darkgray;
    }

    &[class*="_top"][b-fglc3w6yz2] {
        background-color: white;
        border: 2px solid darkgray;
    }

    &[class*="_bottom"][b-fglc3w6yz2] {
        background-color: darkgray;
    }
}
/* /Pages/Workflows/Components/Blocks/ParameterViews/ChildTaskInfoParameterView.razor.rz.scp.css */
.activity-node[b-wwbs6wqzyj] {
    width: 360px;
    height: 96px;
    border-radius: 4px;
    border: 1px solid #E0E5EB;
    background-color: #FFFFFF;
    display: grid;
    grid-template-columns: 13% auto;
    grid-template-rows: 40% auto;
    padding: 0.45rem;
}

.activity-header[b-wwbs6wqzyj] {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.activity-icon[b-wwbs6wqzyj] {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.45rem;
}

.activity-icon__activity-svg[b-wwbs6wqzyj] {
    object-fit: contain;
    height: 100%;
    -webkit-user-drag: none;
}

.activity-header__block-name[b-wwbs6wqzyj] {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 0.75rem;
}

.activity-header__block-type[b-wwbs6wqzyj] {
    font-size: 10px;
    margin-bottom: 0.1rem;
}

.activity-body[b-wwbs6wqzyj] {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
    line-height: 1.15rem;
}

.activity-body__block-parameter[b-wwbs6wqzyj] {
    margin-bottom: 0.15rem;
    margin-right: 0.5rem;
    font-size: 12px;
}

.activity-body__block-parameter span[b-wwbs6wqzyj] {
    text-overflow: ellipsis;
    max-width: 130px;
    overflow: hidden;
}

.activity-body__parameter-value[b-wwbs6wqzyj] {
    color: #2E85FF;
    cursor: pointer;
}

.activity-controls[b-wwbs6wqzyj] {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.activity-controls_hovered[b-wwbs6wqzyj] {
    visibility: visible;
    opacity: 1;
}
/* /Pages/Workflows/Components/Canvas/WorkflowButtonsBar.razor.rz.scp.css */
.workflow-buttons-bar[b-yza1ojhtnt] {
    box-shadow: 0px 2px 4px 0px #8293AB;
}

.workflow-buttons-bar__btn[b-yza1ojhtnt] {
    border-radius: 4px;
    height: 32px;
    width: 32px;
    border: 0px solid #8293AB;
    padding: 0px;
}

.workflow-buttons-bar__btn-long[b-yza1ojhtnt] {
    width: 70px !important;
    word-break: keep-all;
}

.workflow-buttons-bar__icon[b-yza1ojhtnt] {
    height: 17px;
    width: 17px;
}

.workflow-buttons-bar__icon-small[b-yza1ojhtnt] {
    height: 12px;
    width: 12px;
}

.workflow-buttons-bar__btn-active[b-yza1ojhtnt] {
    filter: brightness(0.65) contrast(1.3) saturate(0.8) hue-rotate(-5deg);
}
/* /Pages/Workflows/Components/Canvas/WorkflowCanvas.razor.rz.scp.css */
.workflows-canvas-container[b-krcdxaha5k] {
    border-style: dotted;
}
/* /Pages/Workflows/Components/Canvas/WorkflowStatusLabel.razor.rz.scp.css */
.status-line__label[b-apnb5dwv4w] {
    color: #0A0C0F !important; /* Переписать цвет бутстрапа */
}

.status-line__icon[b-apnb5dwv4w] {
    height: 24px;
    width: 24px;
}

.status-line__label_in-progress[b-apnb5dwv4w] {
    color: #2E85FF !important;
}

.status-line__label_succeed[b-apnb5dwv4w] {
    color: #62CB77 !important;
}

.status-line__label_failed[b-apnb5dwv4w] {
    color: #DA5752 !important;
}

.status-line__icon_in-progress[b-apnb5dwv4w] {
    animation: spin-b-apnb5dwv4w 1s linear infinite;
}

@keyframes spin-b-apnb5dwv4w {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* /Pages/Workflows/Components/Canvas/WorkflowStatusLine.razor.rz.scp.css */
.status-line__status_default[b-xozbcrumdw] {
    color: #0A0C0F !important;
}

.status-line__status_in-progress[b-xozbcrumdw] {
    color: #62CB77 !important;
}

.status-line__expand-icon[b-xozbcrumdw] {
    height: 24px;
    width: 24px;
    rotate: 90deg;
    transition: transform 0.3s ease-in-out;
}

.status-line__expand-icon_activated[b-xozbcrumdw] {
    rotate: 180deg;
    transition: transform 0.3s ease-in-out;
}

.status-line__error[b-xozbcrumdw] {
    color: #B22222;
}

/* /Pages/Workflows/Components/DiagramForm/WorkflowForm.razor.rz.scp.css */
.workflow-form[b-tu0ir1ax7b] {
    height: 5%;
    border-color: #9AA8BC;
}

.workflow-form__run-btn[b-tu0ir1ax7b] {
    background-color: #2E85FF;
}

.workflow-form__run-icon[b-tu0ir1ax7b] {
    height: 24px;
    width: 24px;
}

.workflow-form__run-label[b-tu0ir1ax7b] {

}

.workflow-form__save-btn[b-tu0ir1ax7b] {
    border-color: #9AA8BC;
}

.workflow-form__save-icon[b-tu0ir1ax7b] {
    height: 24px;
    width: 24px;
}

.workflow-form__save-label[b-tu0ir1ax7b] {

}

.workflow-form__settings-btn[b-tu0ir1ax7b] {
    height: 32px;
    width: 32px;
}

.workflow-form__settings-icon[b-tu0ir1ax7b] {
    height: 24px;
    width: 24px;
}

.workflow-form__title[b-tu0ir1ax7b] {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block !important;
}
/* /Pages/Workflows/Components/DiagramForm/WorkflowFormModal.razor.rz.scp.css */
.modal-dialog.modal-dialog-slideout[b-6bg05cl73y] {
    box-shadow: -10px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.modal-dialog-slideout[b-6bg05cl73y] {
    min-height: 100%;
    margin: 0 0 0 auto;
    background: #fff;
}

.modal.fade .modal-dialog.modal-dialog-slideout[b-6bg05cl73y] {
    transform: translate(100%, 0) scale(1);
}

.modal.fade.show .modal-dialog.modal-dialog-slideout[b-6bg05cl73y] {
    transform: translate(0, 0);
    display: flex;
    align-items: stretch;
    -webkit-box-align: stretch;
    height: 100%;
}

.modal.fade.show .modal-dialog.modal-dialog-slideout .modal-body[b-6bg05cl73y] {
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-dialog-slideout .modal-content[b-6bg05cl73y] {
    border: 0;
}

.modal-dialog-slideout .modal-header[b-6bg05cl73y],
.modal-dialog-slideout .modal-footer[b-6bg05cl73y] {
    height: 69px;
    display: block;
}

.modal-dialog-slideout .modal-header h5[b-6bg05cl73y] {
    float: left;
}
/* /Pages/Workflows/Components/Modal/WorkflowModal.razor.rz.scp.css */
/* /Pages/Workflows/Components/QuillTextEditor/QuillTextEditor.razor.rz.scp.css */
.hidden[b-7inem66n7k] {
    display: none;
}

[b-7inem66n7k] .custom-mention-list-container {
    overflow-y: scroll;
    height: 200px;
    top: -200px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
    color: #444;
    white-space: nowrap;
    z-index: 1;
}

.one-row-editor[b-7inem66n7k] {
    --bs-body-color: #212529;
    --bs-border-color: #dee2e6;
    --dxbl-text-edit-border-width: 1px;
    --dxbl-text-edit-border-radius: 0.375rem;
    --dxbl-text-edit-border-style: solid;
    --dxbl-text-edit-border-color: var(--bs-border-color, var(--bs-gray-400, #ced4da));
    --dxbl-text-edit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
    --dxbl-text-edit-color: var(--bs-body-color, var(--dxbl-body-color, inherit));
    --dxbl-text-edit-font-size: 0.875rem;
    --dxbl-text-edit-line-height: 1.4285;
    border-top: var(--dxbl-text-edit-border-width) var(--dxbl-text-edit-border-style) var(--dxbl-text-edit-border-color) !important;
    border-radius: var(--dxbl-text-edit-border-radius);
    border: var(--dxbl-text-edit-border-width) var(--dxbl-text-edit-border-style) var(--dxbl-text-edit-border-color);
    -webkit-box-shadow: var(--dxbl-text-edit-box-shadow);
    box-shadow: var(--dxbl-text-edit-box-shadow);
    color: var(--dxbl-text-edit-color);
    font-size: var(--dxbl-text-edit-font-size);
    line-height: var(--dxbl-text-edit-line-height);
}

    .one-row-editor:focus-within[b-7inem66n7k] {
        --dxbl-text-edit-box-shadow: 0 0 0 .12rem rgba(var(--bs-primary-rgb), .25);
        --dxbl-text-edit-border-color: rgba(var(--bs-primary-rgb), .5);
    }
