@import '_content/Z.Blazor.Diagrams/Z.Blazor.Diagrams.ezdqu7jd9f.bundle.scp.css';
@import '_content/BusyKeys.ChatUI/BusyKeys.ChatUI.bundle.scp.css';
@import '_content/BusyKeys.UiComponents/BusyKeys.UiComponents.bundle.scp.css';

/* /Components/AppTemplate/AppExample.razor.rz.scp.css */
.my-component[b-sy8qix9pkt] {
    /* Make the component 100% wide */
    width: 100%;

    /* Subtract the 60px header from the parent container's height */
    height: calc(100vh - 100px);

    /* Rounded corners */
    border-radius: 15px;

    /* White background for the overall component */
    background-color: #fff;

    /* Flex layout for vertical alignment */
    display: flex;
    flex-direction: column;
}

/* Top black bar */
.header[b-sy8qix9pkt] {
    background-color: #364377;
    color: #fff;
    height: 60px;

    /* Round only the top corners so the bar aligns with the overall rounded corners */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;

    /* Center items vertically, slight padding for the title */
    display: flex;
    align-items: center;
    padding: 0 16px;
}

/* Title styling inside the header */
.title[b-sy8qix9pkt] {
    font-weight: bold;
    font-size: 1.2rem; /* or whatever size you prefer */
}

/* Content area below the header: 
   We want columns side by side, so use flex.
*/
.app-content[b-sy8qix9pkt] {
    display: flex;
    flex: 1; /* This makes the .content fill the remaining vertical space. */

    /* Round only the bottom corners so the content aligns with overall shape */
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden; /* Ensures corners stay rounded if any overflow happens. */
}

/* Narrow columns */
.column1[b-sy8qix9pkt],
.column2[b-sy8qix9pkt] {
    width: 225px; /* or any "narrow" width you prefer */
    flex-shrink: 0; /* ensures the width does not shrink below 200px */
    background-color: #e0e0e0; /* Light gray background */

    /* Full height of the content area */
    height: 100%;

    /* Border-right styling */
    border-right: 1px solid #ccc;
}

/* Slightly lighter gray for the second column */
.column2[b-sy8qix9pkt] {
    width: 300px;
    background-color: #f0f0f0;
}

/* Remaining flexible column */
.column3[b-sy8qix9pkt] {
    flex: 1; /* fill the remaining space */
    min-width: 0; /* ensures the column can shrink properly if needed */
    background-color: #fff; /* Keep white background for the right column */
}
/* /Components/AssignmentGroups/AssignmentGroupList.razor.rz.scp.css */
/* /Components/AssignmentGroups/AssignmentGroupSearch.razor.rz.scp.css */
/* /Components/AssignmentGroups/CreateAssignmentGroupOffCanvas.razor.rz.scp.css */
/* /Components/AssignmentGroups/ManageAssignmentGroupMembersOffCanvas.razor.rz.scp.css */
/* /Components/BusinessUnits/BusinessUnitChart.razor.rz.scp.css */
.diagram-container[b-navjch8wa7] {
    width: 100%;
    height: 600px;
    border: 1px solid black;
    overflow: auto;
    position: relative;
}
/* /Components/BusinessUnits/BusinessUnitList.razor.rz.scp.css */
/* Table Container */
.table-container[b-hgkfxilcuv] {
    overflow: hidden;
    background-color: #fff;
    /* No border, no border-radius */
}

/* Table Styles */
.status-table[b-hgkfxilcuv] {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    background-color: #fff;
}

.status-table th[b-hgkfxilcuv],
.status-table td[b-hgkfxilcuv] {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.status-table thead[b-hgkfxilcuv] {
    background-color: #f9f9f9;
    font-weight: 600;
}

.status-table thead th[b-hgkfxilcuv] {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #666;
}

.status-table tbody tr:hover[b-hgkfxilcuv] {
    background-color: #f5f7fa;
    transition: background 0.15s;
}

/* subtle header row for each group */
.group-header[b-hgkfxilcuv] {
    background:#f9f9f9;
    font-weight:600;
}

/* lighter text in header description */
.muted[b-hgkfxilcuv] { color:#555; font-weight:normal; }


.table-shell[b-hgkfxilcuv] {
    display: flex;
    flex-direction: column;
    user-select: none;
}

/* Detached top UI bar */
.table-header-detached[b-hgkfxilcuv] {
    padding: 8px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Detached bottom UI bar */
.table-footer-detached[b-hgkfxilcuv] {
    padding: 12px;
    background-color: #f5f5f5;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

/* Search box styling */
.search-box[b-hgkfxilcuv] {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

/* Existing table styles kept intact */
.table-container[b-hgkfxilcuv] {
    background-color: #fff;
    overflow: hidden;
}

.status-table[b-hgkfxilcuv] {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    background-color: #fff;
}

.status-table th[b-hgkfxilcuv],
.status-table td[b-hgkfxilcuv] {
    padding: 8px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.status-table thead[b-hgkfxilcuv] {
    background-color: #f9f9f9;
    font-weight: 600;
}

.status-table thead th[b-hgkfxilcuv] {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #666;
}

.status-table tbody tr:hover[b-hgkfxilcuv] {
    background-color: #f5f7fa;
    transition: background 0.15s;
}

.description-column[b-hgkfxilcuv] {
    max-width: 70%;
    width: 70%;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

/* Container for search input and icon */
.search-container[b-hgkfxilcuv] {
    position: relative;
    width: 350px;
    margin-left: auto; /* right-align */
}

/* Icon inside input */
.search-icon[b-hgkfxilcuv] {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 14px;
}

/* Search input styling */
.search-box[b-hgkfxilcuv] {
    width: 100%;
    padding: 8px 12px 8px 32px; /* space for icon */
    font-size: 14px;
    border: none;
    outline: none;
    background-color: #e5e5e5;
    color: #333;
}

/* Placeholder color */
.search-box[b-hgkfxilcuv]::placeholder {
    color: #666;
}

html[data-bs-theme="dark"] .search-box[b-hgkfxilcuv] {
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
}

html[data-bs-theme="dark"] .table-shell[b-hgkfxilcuv],
html[data-bs-theme="dark"] .table-header-detached[b-hgkfxilcuv],
html[data-bs-theme="dark"] .table-footer-detached[b-hgkfxilcuv],
html[data-bs-theme="dark"] .table-container[b-hgkfxilcuv],
html[data-bs-theme="dark"] .status-table[b-hgkfxilcuv],
html[data-bs-theme="dark"] .status-table thead[b-hgkfxilcuv],
html[data-bs-theme="dark"] .status-table thead th[b-hgkfxilcuv] {
    background-color: var(--dark-bg-subtle);
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] td.description-column:hover[b-hgkfxilcuv] {
    color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
}
/* /Components/BusinessUnits/BusinessUnitSelect.razor.rz.scp.css */
/* /Components/BusinessUnits/CreateBusinessUnitOffCanvas.razor.rz.scp.css */
/* /Components/Chats/ChatHistory.razor.rz.scp.css */
.chat-history[b-izgre63ji3] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    overflow-y: auto;
}

.chat-bubble[b-izgre63ji3] {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 18px;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: pre-wrap;
    font-size: 14px;
    position: relative;
}

.from-user[b-izgre63ji3] {
    align-self: flex-end;
    background: #2D68C4;
    color: white;
    border-bottom-right-radius: 4px;
}

    .from-user .copy-btn[b-izgre63ji3] {
        color: white;
    }

.from-others[b-izgre63ji3] {
    align-self: flex-start;
    background: #e5e5ea;
    color: black;
    border-bottom-left-radius: 4px;
}

html[data-bs-theme="dark"] .from-others[b-izgre63ji3] {
    background: var(--dark-bg-subtle);
    color: var(--dark-text-emphasis);
}

    html[data-bs-theme="dark"] .from-others.workflow-bubble[b-izgre63ji3] {
        background: #e6e6ed;
        color: #555;
    }

/* Workflow bubbles reuse .from-others styling */
.workflow-bubble[b-izgre63ji3] {
    background: #e0f7fa;
    color: black;
    border-bottom-left-radius: 4px;
    padding: 8px 12px;
}

.workflow-header[b-izgre63ji3] {
    font-weight: bold;
}

.typing-indicator[b-izgre63ji3] {
    display: flex;
    align-items: center;
    height: 20px;
}

    .typing-indicator .dot[b-izgre63ji3] {
        width: 8px;
        height: 8px;
        margin: 0 3px;
        background-color: #808080;
        border-radius: 50%;
        animation: bounce-b-izgre63ji3 1.5s infinite ease-in-out;
    }

        .typing-indicator .dot:nth-child(2)[b-izgre63ji3] {
            animation-delay: 0.2s;
        }

        .typing-indicator .dot:nth-child(3)[b-izgre63ji3] {
            animation-delay: 0.4s;
        }

@keyframes bounce-b-izgre63ji3 {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* ��� copy button styling ��� */
.copy-btn[b-izgre63ji3] {
    position: absolute;
    bottom: 8px; /* sits 8px above the bottom padding edge */
    right: 14px; /* aligns with the right padding */
    background: transparent;
    border: none;
    padding: 2px;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s;
}

    .copy-btn:hover[b-izgre63ji3] {
        opacity: 1;
    }

/* make the markdown HTML flow normally */
.message-html[b-izgre63ji3] {
    white-space: normal; /* collapse and wrap per HTML tags */
}

/* make the bubble an inline-flex container when single-line */
.chat-bubble.single-line[b-izgre63ji3] {
    display: inline-flex;
    align-items: center;
    white-space: nowrap; /* prevent wrapping */
}

    /* ensure the rendered <p> is inline, not block */
    .chat-bubble.single-line .message-html[b-izgre63ji3] {
        display: inline;
    }

        .chat-bubble.single-line .message-html p[b-izgre63ji3] {
            display: inline;
            margin: 0;
            padding: 0;
        }

    /* put the button right after the text, not absolutely positioned */
    .chat-bubble.single-line .copy-btn[b-izgre63ji3] {
        position: static;
        margin-left: 8px;
        opacity: 0.6;
        transition: opacity 0.2s;
    }

        .chat-bubble.single-line .copy-btn:hover[b-izgre63ji3] {
            opacity: 1;
        }
/* /Components/Chats/ChatWindow.razor.rz.scp.css */
.chat-window-container[b-1ix9jxqpqr] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.chat-main[b-1ix9jxqpqr] {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 0; /* important for flex + overflow to work correctly */
}

.chat-input[b-1ix9jxqpqr] {
    flex-shrink: 0;
}
/* /Components/Chats/MessagePreview.razor.rz.scp.css */
.message-preview[b-kbzhghxyt0] {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    align-items: center;
    cursor: pointer;
    transition: background 150ms ease;
}

    .message-preview.selected[b-kbzhghxyt0] {
        background: #e6e6ed;
    }

.avatar .avatar-image[b-kbzhghxyt0] {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.preview-content[b-kbzhghxyt0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.preview-header[b-kbzhghxyt0] {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.sender[b-kbzhghxyt0] {
    white-space: nowrap;
    overflow: hidden;
    font-weight: 500;
    text-overflow: ellipsis;
}

.timestamp[b-kbzhghxyt0] {
    font-size: 12px;
    color: #888;
    flex-shrink: 0;
}

.preview-snippet[b-kbzhghxyt0] {
    font-size: 13px;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4em;
    min-height: calc(1.4em * 2); /* Reserve space for 2 lines */
}

html[data-bs-theme="dark"] .message-preview:not(.selected) .preview-snippet[b-kbzhghxyt0],
html[data-bs-theme="dark"] .message-preview:not(.selected) .timestamp[b-kbzhghxyt0] {
    color: var(--dark-text-emphasis);
}

.message-preview.highlight[b-kbzhghxyt0] {
    animation: fadeHighlight-b-kbzhghxyt0 3s ease-out;
}

@keyframes fadeHighlight-b-kbzhghxyt0 {
    from {
        background-color: #e0f7fa;
    }

    to {
        background-color: #e6e6ed;
    }
}


.message-preview.draft[b-kbzhghxyt0] {
    background: #fafafa;
    border: 2px dashed #ccc;
}

    .message-preview.draft .preview-snippet[b-kbzhghxyt0] {
        font-style: italic;
        color: #999;
    }

    .message-preview.draft[b-kbzhghxyt0]::before {
        content: "🖊️";
        margin-right: 8px;
        opacity: 0.6;
    }
/* /Components/Chats/StartConversationOffCanvas.razor.rz.scp.css */
/* /Components/Chats/ToolsDropdown.razor.rz.scp.css */
/* Dropup (Tools Button and Menu) */
.dropdown.dropup[b-9szzxv650z] {
    position: relative;
    display: inline-block;
}

.oval[b-9szzxv650z] {
    border-radius: 30px;
    border-color: #6f6f6f;
}

/* Dropdown Menu (Dropup) */
.dropdown-menu[b-9szzxv650z] {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 8px;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    list-style: none;
    padding: 8px 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
    overflow-y: auto;
    max-height: 80vh;
}

.dropdown-menu.show[b-9szzxv650z] {
    display: block;
}

.dropdown-item[b-9szzxv650z] {
    background: none;
    border: none;
    padding: 6px 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    transition: background 150ms ease;
}
.dropdown-item:hover[b-9szzxv650z] {
    background-color: #f3f3f3;
}

.fa-check[b-9szzxv650z] {
    width: 20px; /* Consistent space for the check mark */
}

.me-2[b-9szzxv650z] {
    margin-right: 0.5rem;
}

.dropdown-item:active[b-9szzxv650z] {
    color: inherit;
    background-color: #f3f3f3; /* Or your hover color */
}

.badge-rounded[b-9szzxv650z] {
    border-radius: 50%;
    font-size: 11px;
    padding: 4px 6px;
    line-height: 1;
    min-width: 20px;
    text-align: center;
}

.btn.position-relative[b-9szzxv650z] {
    padding-right: 2rem; /* Ensure space for badge */
}

.badge[b-9szzxv650z] {
    border-radius: 50%;
}

html[data-bs-theme="dark"] .btn[b-9szzxv650z] {
    color: var(--dark-text-emphasis) !important;
}
/* /Components/Chats/UserInput.razor.rz.scp.css */
/* Layout Container */
.chat-container[b-y178b70q67] {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Main Card */
.chat-card[b-y178b70q67] {
    display: grid;
    grid-template-rows: 1fr auto;
    width: 60%;
    max-width: 750px;
    padding: 16px;
    border: 1px solid #e6e6e6;
    border-radius: 30px;
    background: white;
    overflow: visible; /* allow dropdown to escape */
    position: relative;
}

html[data-bs-theme="dark"] .chat-card[b-y178b70q67] {
    background: var(--dark-bg-subtle);
    color: var(--dark-text-emphasis);
}

    html[data-bs-theme="dark"] .chat-card .btn[b-y178b70q67] {
        color: var(--dark-text-emphasis) !important;
    }

/* Content Area */
.content-inner[b-y178b70q67] {
    width: 100%;
    height: 100%;
}

/* Textarea Input */
.msg-box[b-y178b70q67] {
    width: 100%;
    min-height: 30px;
    height: 30px;
    max-height: calc(30px * 8);
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    resize: none;
    overflow-y: hidden;
    background: transparent;
    font: 16px/1.5 inherit;
    box-sizing: border-box;
}

/* Options List */
.options-list[b-y178b70q67] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-btn[b-y178b70q67] {
    width: 100%;
    padding: 8px 12px;
    background: #f3f3f3;
    border: none;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: background 150ms ease;
}

    .option-btn:hover[b-y178b70q67] {
        background: #e0e0e0;
    }

/* Actions Row */
.action-row[b-y178b70q67] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 8px;
}

/* Dropup (Workflows Button and Menu) */
.dropdown.dropup[b-y178b70q67] {
    position: relative;
    display: inline-block;
}

.workflows-btn[b-y178b70q67] {
    padding: 6px 16px;
    border-radius: 999px;
    background: #1a1a1a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 150ms ease;
}

    .workflows-btn:hover[b-y178b70q67] {
        background: #000;
    }


.oval[b-y178b70q67] {
    border-radius: 30px;
    border-color: #6f6f6f;
}

/* Dropdown Menu (Dropup) */
.dropdown-menu[b-y178b70q67] {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 8px;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    list-style: none;
    padding: 8px 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
}

    .dropdown-menu.show[b-y178b70q67] {
        display: block;
    }

.dropdown-item[b-y178b70q67] {
    background: none;
    border: none;
    padding: 6px 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    transition: background 150ms ease;
}

    .dropdown-item:hover[b-y178b70q67] {
        background-color: #f3f3f3;
    }

.send-btn[b-y178b70q67] {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 150ms ease;
}

    .send-btn:disabled[b-y178b70q67] {
        opacity: 0.4;
        cursor: default;
    }

    .send-btn:not(:disabled):hover[b-y178b70q67] {
        background: #333; /* lighter black */
    }


.cancel-btn[b-y178b70q67] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #cc0000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

    .cancel-btn:hover[b-y178b70q67] {
        background: #ffe6e6;
        border-color: #cc0000;
        color: #cc0000;
    }

html[data-bs-theme="dark"] .cancel-btn[b-y178b70q67] {
    color: red;
}

.flex-gap-5[b-y178b70q67] {
    display: flex;
    gap: 5px;
}

.fa-li[b-y178b70q67] {
    width: 20px; /* Adjust width for alignment */
    display: inline-block;
    text-align: center;
}

.fa-check[b-y178b70q67] {
    width: 20px; /* Consistent space for the check mark */
}
/* /Components/Chats/V2/ChatHistoryV2.razor.rz.scp.css */
.chat-history[b-8xhzgyevbs] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    overflow-y: auto;
}

.chat-bubble[b-8xhzgyevbs] {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 18px;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: pre-wrap;
    font-size: 14px;
    position: relative;
}

.from-user[b-8xhzgyevbs] {
    align-self: flex-end;
    background: #2D68C4;
    color: white;
    border-bottom-right-radius: 4px;
}

    .from-user .copy-btn[b-8xhzgyevbs] {
        color: white;
    }

.from-others[b-8xhzgyevbs] {
    align-self: flex-start;
    background: #e5e5ea;
    color: black;
    border-bottom-left-radius: 4px;
}

html[data-bs-theme="dark"] .from-others[b-8xhzgyevbs] {
    background: var(--dark-bg-subtle);
    color: var(--dark-text-emphasis);
}

    html[data-bs-theme="dark"] .from-others.workflow-bubble[b-8xhzgyevbs] {
        background: #e6e6ed;
        color: #555;
    }

/* Workflow bubbles reuse .from-others styling */
.workflow-bubble[b-8xhzgyevbs] {
    background: #e0f7fa;
    color: black;
    border-bottom-left-radius: 4px;
    padding: 8px 12px;
}

.workflow-header[b-8xhzgyevbs] {
    font-weight: bold;
}

/* ��� copy button styling ��� */
.copy-btn[b-8xhzgyevbs] {
    position: absolute;
    bottom: 8px; /* sits 8px above the bottom padding edge */
    right: 14px; /* aligns with the right padding */
    background: transparent;
    border: none;
    padding: 2px;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s;
}

    .copy-btn:hover[b-8xhzgyevbs] {
        opacity: 1;
    }

/* make the markdown HTML flow normally */
.message-html[b-8xhzgyevbs] {
    white-space: normal; /* collapse and wrap per HTML tags */
}

/* make the bubble an inline-flex container when single-line */
.chat-bubble.single-line[b-8xhzgyevbs] {
    display: inline-flex;
    align-items: center;
    white-space: nowrap; /* prevent wrapping */
}

    /* ensure the rendered <p> is inline, not block */
    .chat-bubble.single-line .message-html[b-8xhzgyevbs] {
        display: inline;
    }

        .chat-bubble.single-line .message-html p[b-8xhzgyevbs] {
            display: inline;
            margin: 0;
            padding: 0;
        }

    /* put the button right after the text, not absolutely positioned */
    .chat-bubble.single-line .copy-btn[b-8xhzgyevbs] {
        position: static;
        margin-left: 8px;
        opacity: 0.6;
        transition: opacity 0.2s;
    }

        .chat-bubble.single-line .copy-btn:hover[b-8xhzgyevbs] {
            opacity: 1;
        }

.chat-bubble-row[b-8xhzgyevbs] {
    display: flex;
    align-items: flex-end;
    margin-bottom: 8px;
}

    .chat-bubble-row.other-message[b-8xhzgyevbs] {
        flex-direction: row;
        justify-content: flex-start;
        align-items: start;
    }

    .chat-bubble-row.own-message[b-8xhzgyevbs] {
        justify-content: flex-end;
    }

.avatar[b-8xhzgyevbs] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f1f1;
    background: #e5e5ea;
    flex-shrink: 0;
    margin: 0 8px;
}

.bubble-column[b-8xhzgyevbs] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.chat-bubble-row.own-message .bubble-column[b-8xhzgyevbs] {
    align-items: flex-end;
}

.sender-name[b-8xhzgyevbs] {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-bottom: 2px;
    margin-left: 4px;
    margin-right: 4px;
}

.chat-bubble[b-8xhzgyevbs] {
    /* Keep your existing styles for bubbles here! */
    min-width: 0;
    max-width: 70vw;
}

    /* Optional: For single-line bubbles */
    .chat-bubble.single-line .sender-name[b-8xhzgyevbs] {
        display: block;
        margin-bottom: 0;
    }

html[data-bs-theme="dark"] .sender-name[b-8xhzgyevbs] {
    color: #bbb;
}

/* inline time next to other users names */
.sender-name[b-8xhzgyevbs] {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-bottom: 2px;
    margin-left: 4px;
    margin-right: 4px;
}

.message-time-inline[b-8xhzgyevbs] {
    font-size: 0.75rem;
    color: #888;
    margin-left: 6px;
}

.message-time-own[b-8xhzgyevbs] {
    font-size: 0.75rem;
    color: #555;
    align-self: flex-end;
    margin-bottom: 2px;
}

html[data-bs-theme="dark"] .message-time-inline[b-8xhzgyevbs],
html[data-bs-theme="dark"] .message-time-own[b-8xhzgyevbs] {
    color: rgba(255,255,255,0.6);
}

.date-separator[b-8xhzgyevbs] {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #666;
    margin: 16px 0;
    white-space: nowrap;
}

    .date-separator[b-8xhzgyevbs]::before,
    .date-separator[b-8xhzgyevbs]::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #ccc;
        margin: 0 8px;
    }

/* Dark mode tweaks */
html[data-bs-theme="dark"] .date-separator[b-8xhzgyevbs] {
    color: rgba(255,255,255,0.6);
}

    html[data-bs-theme="dark"] .date-separator[b-8xhzgyevbs]::before,
    html[data-bs-theme="dark"] .date-separator[b-8xhzgyevbs]::after {
        background: #bbb;
    }
/* /Components/Chats/V2/ChatTextAreaV2.razor.rz.scp.css */
.suggestion-list[b-7cmak2mtez] {
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 2px;
    padding: 0;
}


/* Textarea Input */
.msg-box[b-7cmak2mtez] {
    width: 100%;
    min-height: 30px;
    height: 30px;
    max-height: calc(30px * 8);
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    resize: none;
    overflow-y: hidden;
    background: transparent;
    font: 16px/1.5 inherit;
    box-sizing: border-box;
}
/* /Components/Chats/V2/ChatWindowV2.razor.rz.scp.css */
.chat-window-container[b-0sck3o7aca] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.chat-main[b-0sck3o7aca] {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 0; /* important for flex + overflow to work correctly */
}

.chat-input[b-0sck3o7aca] {
    flex-shrink: 0;
}
/* /Components/Chats/V2/ConversationPreviewV2.razor.rz.scp.css */
.conversation-preview[b-p1jbms52ks] {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    align-items: flex-start;
    cursor: pointer;
    transition: background 150ms ease;
}

    .conversation-preview.selected[b-p1jbms52ks] {
        background: #e6e6ed;
    }

    .conversation-preview.highlight[b-p1jbms52ks] {
        animation: fadeHighlight-b-p1jbms52ks 3s ease-out;
    }

    .conversation-preview.draft[b-p1jbms52ks] {
        background: #fafafa;
        border: 2px dashed #ccc;
    }

        .conversation-preview.draft .preview-snippet[b-p1jbms52ks] {
            font-style: italic;
            color: #999;
        }

        .conversation-preview.draft[b-p1jbms52ks]::before {
            content: "🖊️";
            margin-right: 8px;
            opacity: 0.6;
        }

/* Avatar group styles */
.avatar-group[b-p1jbms52ks] {
    display: flex;
    align-items: center;
    position: relative;
    height: 48px;
    flex-shrink: 0;
}

    .avatar-group .avatar-image[b-p1jbms52ks] {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 0 0 1px #ccc;
        margin-left: -25px; /* Reduced from -25px to -12px for better overlap */
        transition: all 0.2s;
        background: #eee;
        position: relative;
    }

        /* Set z-index in descending order */
        .avatar-group .avatar-image:nth-child(1)[b-p1jbms52ks] {
            z-index: 5;
        }

        .avatar-group .avatar-image:nth-child(2)[b-p1jbms52ks] {
            z-index: 4;
        }

        .avatar-group .avatar-image:nth-child(3)[b-p1jbms52ks] {
            z-index: 3;
        }

        .avatar-group .avatar-image:nth-child(4)[b-p1jbms52ks] {
            z-index: 2;
        }

        .avatar-group .avatar-image:nth-child(5)[b-p1jbms52ks] {
            z-index: 1;
        }

        .avatar-group .avatar-image:first-child[b-p1jbms52ks] {
            margin-left: 0; /* First avatar has no negative margin */
        }

    .avatar-group .avatar-more[b-p1jbms52ks] {
        background: #ccc;
        font-size: 12px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: -25px;
        border: 2px solid #fff;
        z-index: 0;
        position: relative;
        padding-left: 18px;
    }

/* Preview content layout */
.preview-content[b-p1jbms52ks] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.preview-header[b-p1jbms52ks] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.sender[b-p1jbms52ks] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    flex: 1;
}

.timestamp[b-p1jbms52ks] {
    font-size: 12px;
    color: #888;
    flex-shrink: 0;
}

.preview-body[b-p1jbms52ks] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.preview-snippet[b-p1jbms52ks] {
    font-size: 13px;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4em;
    min-height: calc(1.4em * 2);
    flex: 1;
    min-width: 0;
}

/* Unread badge */
.unread-badge[b-p1jbms52ks] {
    color: #fff !important;
    border-radius: 999px;
    min-width: 20px;
    min-height: 20px;
    padding: 0 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 1px 2px #0001;
    margin-top: 2px;
    border: none;
    flex-shrink: 0;
}

/* Typing indicator */
.users-typing[b-p1jbms52ks] {
    font-weight: 500;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}

.typing-indicator[b-p1jbms52ks] {
    display: flex;
    align-items: center;
}

    .typing-indicator .dot[b-p1jbms52ks] {
        width: 8px;
        height: 8px;
        margin: 0 3px;
        background-color: #808080;
        border-radius: 50%;
        animation: bounce-b-p1jbms52ks 1.5s infinite ease-in-out;
    }

        .typing-indicator .dot:nth-child(2)[b-p1jbms52ks] {
            animation-delay: 0.2s;
        }

        .typing-indicator .dot:nth-child(3)[b-p1jbms52ks] {
            animation-delay: 0.4s;
        }

/* Dark mode styles */
html[data-bs-theme="dark"] .conversation-preview:not(.selected) .sender[b-p1jbms52ks],
html[data-bs-theme="dark"] .conversation-preview:not(.selected) .preview-snippet[b-p1jbms52ks],
html[data-bs-theme="dark"] .conversation-preview:not(.selected) .timestamp[b-p1jbms52ks] {
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .bg-primary.unread-badge[b-p1jbms52ks] {
    background-color: #58349a !important;
}

/* Animations */
@keyframes fadeHighlight-b-p1jbms52ks {
    from {
        background-color: #e0f7fa;
    }

    to {
        background-color: #e6e6ed;
    }
}

@keyframes bounce-b-p1jbms52ks {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.avatar-wrapper[b-p1jbms52ks] {
    display: inline-block;
    position: relative;
}

.status-dot[b-p1jbms52ks] {
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 10;
}

.status-online[b-p1jbms52ks] {
    background: #4caf50;
}

.status-busy[b-p1jbms52ks] {
    background: #dc3545;
}

.status-offline[b-p1jbms52ks] {
    background: #9e9e9e;
}

html[data-bs-theme="dark"] .status-dot[b-p1jbms52ks] {
    border: 2px solid #232323; /* or your dark bg color */
}
/* /Components/Chats/V2/ConversationsListV2.razor.rz.scp.css */
/* /Components/Chats/V2/GroupChatHeader.razor.rz.scp.css */
.group-chat-header[b-ozcz9o07do] {
    border-bottom: 1px solid var(--bs-border-color, #e0e0e0);
    background: var(--bs-body-bg, #fff);
    position: sticky;
    top: 0;
    z-index: 2;
}

/* Set width to fit up to 4 avatars (32px + 18*3 = 86px).
   If you change MaxProfilePictures, adjust this accordingly! */
.group-avatar-stack[b-ozcz9o07do] {
    display: inline-block;
    position: relative;
    width: 86px; /* for 4 avatars: 32 + 18*3 */
    height: 32px;
    min-width: 86px; /* prevent shrinking, keeps spacing right */
    vertical-align: middle;
}

/* Each avatar is 32x32, overlapping the previous by 14px (using left: idx * 18px) */
.avatar-stacked[b-ozcz9o07do] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    position: absolute;
    top: 0;
    left: 0; /* Will be overridden inline for stacking */
    background: #fff;
    object-fit: cover;
    transition: z-index 0.1s;
}

/* Show "+N" badge for extra members */
.more-avatars[b-ozcz9o07do] {
    position: absolute;
    top: 0;
    left: 72px; /* 18 * MaxProfilePictures (4 * 18 = 72 for 4 avatars) */
    background: #e0e0e0;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    z-index: 0;
    font-weight: 500;
    padding-left: 6px;
}
/* /Components/Chats/V2/StartConversationPanelV2.razor.rz.scp.css */
.search-container[b-b1mul2fhaf] {
    margin-bottom: 0.5rem;
}

.contacts-list[b-b1mul2fhaf] {
    padding: 0;
    margin: 0;
    overflow-y: auto;
}

    .contacts-list.direct-message-mode[b-b1mul2fhaf] {
        max-height: 75vh;
    }

    .contacts-list.group-mode[b-b1mul2fhaf] {
        max-height: 60vh;
    }

    .contacts-list .contact-row[b-b1mul2fhaf] {
        display: flex;
        align-items: center;
        padding: 0.5rem 0.2rem;
        cursor: pointer;
        transition: background 0.12s;
    }

        /* Hover and selected highlight for light theme */
        .contacts-list .contact-row:hover[b-b1mul2fhaf],
        .contacts-list .contact-row.selected[b-b1mul2fhaf] {
            background-color: #e6e6ed;
            transition: background 0.12s;
        }

        .contacts-list .contact-row.selected[b-b1mul2fhaf] {
            background-color: #c7e0fa !important;
        }

    /* Avatar styles for light theme */
    .contacts-list .contact-avatar[b-b1mul2fhaf] {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid #ccc;
        background: #fff;
    }

    .contacts-list .contact-name[b-b1mul2fhaf] {
        font-weight: 500;
        color: inherit;
    }

.group-mode .contact-row[b-b1mul2fhaf] {
    padding-left: 0;
}

    .group-mode .contact-row input[type="checkbox"][b-b1mul2fhaf] {
        margin-right: 0.5rem;
    }

[data-bs-theme="dark"] .contacts-list .contact-row:hover[b-b1mul2fhaf],
[data-bs-theme="dark"] .contacts-list .contact-row.selected[b-b1mul2fhaf] {
    background-color: #233a55;
}

[data-bs-theme="dark"] .contacts-list .contact-row.selected[b-b1mul2fhaf] {
    background-color: #29597b !important;
}

[data-bs-theme="dark"] .contacts-list .contact-avatar[b-b1mul2fhaf] {
    border: 1px solid #333;
    background: #1a1d1f;
}

@media (max-width: 575.98px) {
    .contacts-list[b-b1mul2fhaf] {
        max-height: 65vw;
    }
}
/* /Components/Chats/V2/ToolsDropdownV2.razor.rz.scp.css */
/* Dropup (Tools Button and Menu) */
.dropdown.dropup[b-j6jmo052pq] {
    position: relative;
    display: inline-block;
}

.oval[b-j6jmo052pq] {
    border-radius: 30px;
    border-color: #6f6f6f;
}

/* Dropdown Menu (Dropup) */
.dropdown-menu[b-j6jmo052pq] {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 8px;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    list-style: none;
    padding: 8px 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
    overflow-y: auto;
    max-height: 80vh;
}

.dropdown-menu.show[b-j6jmo052pq] {
    display: block;
}

.dropdown-item[b-j6jmo052pq] {
    background: none;
    border: none;
    padding: 6px 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    transition: background 150ms ease;
}
.dropdown-item:hover[b-j6jmo052pq] {
    background-color: #f3f3f3;
}

.fa-check[b-j6jmo052pq] {
    width: 20px; /* Consistent space for the check mark */
}

.me-2[b-j6jmo052pq] {
    margin-right: 0.5rem;
}

.dropdown-item:active[b-j6jmo052pq] {
    color: inherit;
    background-color: #f3f3f3; /* Or your hover color */
}

.badge-rounded[b-j6jmo052pq] {
    border-radius: 50%;
    font-size: 11px;
    padding: 4px 6px;
    line-height: 1;
    min-width: 20px;
    text-align: center;
}

.btn.position-relative[b-j6jmo052pq] {
    padding-right: 2rem; /* Ensure space for badge */
}

.badge[b-j6jmo052pq] {
    border-radius: 50%;
}

html[data-bs-theme="dark"] .btn[b-j6jmo052pq] {
    color: var(--dark-text-emphasis) !important;
}
/* /Components/Chats/V2/TypingIndicatorV2.razor.rz.scp.css */
/* Typing indicator */

.typing-indicator[b-tvkdyvw6te] {
    display: flex;
    align-items: center;
    height: 20px;
}

    .typing-indicator .dot[b-tvkdyvw6te] {
        width: 8px;
        height: 8px;
        margin: 0 3px;
        background-color: #808080;
        border-radius: 50%;
        animation: bounce-b-tvkdyvw6te 1.5s infinite ease-in-out;
    }

        .typing-indicator .dot:nth-child(2)[b-tvkdyvw6te] {
            animation-delay: 0.2s;
        }

        .typing-indicator .dot:nth-child(3)[b-tvkdyvw6te] {
            animation-delay: 0.4s;
        }

@keyframes bounce-b-tvkdyvw6te {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}
/* /Components/Chats/V2/UserInputV2.razor.rz.scp.css */
/* Layout Container */
.chat-container[b-vdbci0smz6] {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Main Card */
.chat-card[b-vdbci0smz6] {
    display: grid;
    grid-template-rows: 1fr auto;
    width: 60%;
    max-width: 750px;
    padding: 16px;
    border: 1px solid #e6e6e6;
    border-radius: 30px;
    background: white;
    overflow: visible; /* allow dropdown to escape */
    position: relative;
}

html[data-bs-theme="dark"] .chat-card[b-vdbci0smz6] {
    background: var(--dark-bg-subtle);
    color: var(--dark-text-emphasis);
}

    html[data-bs-theme="dark"] .chat-card .btn[b-vdbci0smz6] {
        color: var(--dark-text-emphasis) !important;
    }

/* Content Area */
.content-inner[b-vdbci0smz6] {
    width: 100%;
    height: 100%;
}

/* Options List */
.options-list[b-vdbci0smz6] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-btn[b-vdbci0smz6] {
    width: 100%;
    padding: 8px 12px;
    background: #f3f3f3;
    border: none;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: background 150ms ease;
}

    .option-btn:hover[b-vdbci0smz6] {
        background: #e0e0e0;
    }

/* Actions Row */
.action-row[b-vdbci0smz6] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 8px;
}

/* Dropup (Workflows Button and Menu) */
.dropdown.dropup[b-vdbci0smz6] {
    position: relative;
    display: inline-block;
}

.workflows-btn[b-vdbci0smz6] {
    padding: 6px 16px;
    border-radius: 999px;
    background: #1a1a1a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 150ms ease;
}

    .workflows-btn:hover[b-vdbci0smz6] {
        background: #000;
    }


.oval[b-vdbci0smz6] {
    border-radius: 30px;
    border-color: #6f6f6f;
}

/* Dropdown Menu (Dropup) */
.dropdown-menu[b-vdbci0smz6] {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 8px;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    list-style: none;
    padding: 8px 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
}

    .dropdown-menu.show[b-vdbci0smz6] {
        display: block;
    }

.dropdown-item[b-vdbci0smz6] {
    background: none;
    border: none;
    padding: 6px 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    transition: background 150ms ease;
}

    .dropdown-item:hover[b-vdbci0smz6] {
        background-color: #f3f3f3;
    }

.send-btn[b-vdbci0smz6] {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 150ms ease;
}

    .send-btn:disabled[b-vdbci0smz6] {
        opacity: 0.4;
        cursor: default;
    }

    .send-btn:not(:disabled):hover[b-vdbci0smz6] {
        background: #333; /* lighter black */
    }


.cancel-btn[b-vdbci0smz6] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #cc0000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

    .cancel-btn:hover[b-vdbci0smz6] {
        background: #ffe6e6;
        border-color: #cc0000;
        color: #cc0000;
    }

html[data-bs-theme="dark"] .cancel-btn[b-vdbci0smz6] {
    color: red;
}

.flex-gap-5[b-vdbci0smz6] {
    display: flex;
    gap: 5px;
}

.fa-li[b-vdbci0smz6] {
    width: 20px; /* Adjust width for alignment */
    display: inline-block;
    text-align: center;
}

.fa-check[b-vdbci0smz6] {
    width: 20px; /* Consistent space for the check mark */
}
/* /Components/Common/AddressText.razor.rz.scp.css */
/* /Components/Common/BaseModal.razor.rz.scp.css */
/* /Components/Common/Buttons/AddButton.razor.rz.scp.css */
/* /Components/Common/Buttons/CancelButton.razor.rz.scp.css */
/* /Components/Common/Buttons/CollapseButton.razor.rz.scp.css */
/* /Components/Common/Buttons/CopyButton.razor.rz.scp.css */
/* /Components/Common/Buttons/DeleteButton.razor.rz.scp.css */
/* /Components/Common/Buttons/EditButton.razor.rz.scp.css */
/* /Components/Common/Buttons/GoBackButton.razor.rz.scp.css */
/* /Components/Common/Buttons/GroupButton.razor.rz.scp.css */
/* /Components/Common/Buttons/NavigateButton.razor.rz.scp.css */
/* /Components/Common/Buttons/SaveButton.razor.rz.scp.css */
/* /Components/Common/Buttons/StartButton.razor.rz.scp.css */
/* /Components/Common/Buttons/SyncButton.razor.rz.scp.css */
/* /Components/Common/Buttons/UsersButton.razor.rz.scp.css */
/* /Components/Common/Buttons/ViewButton.razor.rz.scp.css */
/* /Components/Common/CircleProfileImage.razor.rz.scp.css */
.initials-circle[b-g417yc9axh] {
    width: 75px;
    height: 75px;
    background-color: #4a4a4a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    border-radius: 50%;
    font-size: 2.2em;
}
/* /Components/Common/CustomTable.razor.rz.scp.css */
table.table[b-m4wraaz268] {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    font-size: 0.9rem;

    color: #272727;
    
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: transparent;
    background: none !important;
}

table.table thead[b-m4wraaz268] {
    background-color: #e4e3e3 !important;
    font-size: 0.9rem;
}

table.table thead th[b-m4wraaz268] {
    background-color: #e4e3e3 !important;
    padding: 0.75rem;
    font-weight: bold;
}

[data-bs-theme="dark"] table.table thead[b-m4wraaz268] {
    background-color: #181818 !important;
    color: #282828;
    font-size: 0.9rem;
    border-width: 0;
}

[data-bs-theme="dark"] table.table thead th[b-m4wraaz268] {
    background-color: #181818 !important;
    padding: 0.75rem;
    font-weight: bold;
    border-width: 0;
}

table.table thead th:first-of-type[b-m4wraaz268] {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

table.table thead th:last-of-type[b-m4wraaz268] {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

table.table tbody tr[b-m4wraaz268],
table.table tbody td[b-m4wraaz268] {
    background-color: transparent !important;
    background: none !important;
}
/* /Components/Common/Dialogs/ConfirmationDialog.razor.rz.scp.css */
/* /Components/Common/EnumSelect.razor.rz.scp.css */
/* /Components/Common/ErrorModal.razor.rz.scp.css */
/* /Components/Common/Inputs/EditableField.razor.rz.scp.css */
.interactive-editable-field.display-mode[b-ps4kokyjkf] {
    cursor: pointer;
}

.interactive-editable-field .is-invalid[b-ps4kokyjkf] {
    border-color: #dc3545;
}
/* /Components/Common/Inputs/InputSelectBool.razor.rz.scp.css */
/* /Components/Common/Inputs/Select2.razor.rz.scp.css */
.interactive-editable-field.display-mode[b-2s5g2l6ivu] {
    cursor: pointer;
}

.interactive-editable-field .is-invalid[b-2s5g2l6ivu] {
    border-color: #dc3545;
}
/* /Components/Common/KeyValueList.razor.rz.scp.css */
/* Container styling */
.key-value-list-container[b-e4my40sbn9] {
    background-color: #2b2b2b;
    border-radius: 8px;
    margin: 10px 0;

    /* 
       Remove left/right padding so that the 
       item border-bottom can extend 100% width
    */
    padding: 0;
}

/* Optional title styling */
.key-value-list-title[b-e4my40sbn9] {
    font-size: 14px;
    font-weight: bold;
    color: #A9A9A9;
    text-transform: uppercase;

    /* Give the title some spacing above the list items */
    padding: 10px 15px 5px 15px;
    box-sizing: border-box;
}

/* Wrapper for all items */
.key-value-list-items[b-e4my40sbn9] {
    display: flex;
    flex-direction: column;
    /* No extra padding so border lines extend fully */
    padding: 0;
    box-sizing: border-box;
}
/* /Components/Common/KeyValueListItem.razor.rz.scp.css */
/* 
   Each item row with consistent height, 
   and border-bottom for horizontal separators.
*/
.key-value-item[b-9rljrljuxv] {
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Fixed height for each item */
    height: 40px;

    /* Padding to keep text away from edges, 
       but the border goes 100% across the parent */
    padding: 0 15px;

    /* Bottom border for each item */
    border-bottom: 1px solid #212121;
    box-sizing: border-box;
    width: 100%;
}

/* Add a top border for the first item */
.key-value-item:first-child[b-9rljrljuxv] {
    border-top: 1px solid #212121;
}

/* Remove the bottom border from the last item */
.key-value-item:last-child[b-9rljrljuxv] {
    border-bottom: none;
}

/* Key styling: left-aligned, gray, and bold */
.key-value-key[b-9rljrljuxv] {
    text-align: left;
    font-size: 14px;
    color: #A9A9A9;
    font-weight: bold;
}

/* Value styling: right-aligned, white */
.key-value-value[b-9rljrljuxv] {
    text-align: right;
    font-size: 14px;
    color: #ffffff;
}
/* /Components/Common/LabeledValue.razor.rz.scp.css */
/* Overall container styling */
.label-value-container[b-31eqe6aaja] {
    background-color: #dddddd; /* Default for light mode */
    border-radius: 8px;
    position: relative;
}

[data-bs-theme="dark"] .label-value-container[b-31eqe6aaja] {
    background-color: #444444; /* Dark mode */
}

/* Edit button styling */
.label-value-edit-button[b-31eqe6aaja] {
    position: absolute;
    top: 10px; /* Adjusted to align with the content */
    right: 10px;
    background: none;
    border: none;
    color: #414141; /* Light mode */
    cursor: pointer;
    border-radius: 5px;
    height: 30px;
    width: 30px;
    display: flex; /* Ensures the icon is centered */
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-bs-theme="dark"] .label-value-edit-button[b-31eqe6aaja] {
    color: #ffffff; /* Dark mode */
}

.label-value-edit-button:hover[b-31eqe6aaja] {
    background-color: rgba(0, 0, 0, 0.2); /* Light mode hover */
}

[data-bs-theme="dark"] .label-value-edit-button:hover[b-31eqe6aaja] {
    background-color: rgba(255, 255, 255, 0.2); /* Dark mode hover */
}

/* Inner content wrapper */
.label-value-content[b-31eqe6aaja] {
    padding: 10px 15px;
}

/* Label styling */
.label-value-label[b-31eqe6aaja] {
    font-size: 12px;
    font-weight: bold;
    color: #414141; /* Light mode */
    text-transform: uppercase;
}

[data-bs-theme="dark"] .label-value-label[b-31eqe6aaja] {
    color: #A9A9A9; /* Dark mode */
}

/* Value content styling */
.label-value-value[b-31eqe6aaja] {
    font-size: 16px;
    color: #414141; /* Light mode */
    margin-top: 5px;
}

[data-bs-theme="dark"] .label-value-value[b-31eqe6aaja] {
    color: #ffffff; /* Dark mode */
}
/* /Components/Common/Labels/RequiredFieldLabel.razor.rz.scp.css */
/* /Components/Common/Lists/InfiniteSearchList.razor.rz.scp.css */
/* /Components/Common/Modals/Modal.razor.rz.scp.css */
/* /Components/Common/OffCanvas.razor.rz.scp.css */
/* /Components/Common/Pager.razor.rz.scp.css */
/* /Components/Common/Paging/Pagination.razor.rz.scp.css */
/* /Components/Common/RoundedDiv.razor.rz.scp.css */
/* Overall container styling */
.rounded-container[b-f4w9offs3k] {
    background-color: #dddddd; /* Default for light mode */
    border-radius: 8px;
    position: relative;
    padding: 20px 30px;
}

[data-bs-theme="dark"] .rounded-container[b-f4w9offs3k] {
    background-color: #444444; /* Dark mode */
}
/* /Components/Common/ScrollView.razor.rz.scp.css */
.scroll-view[b-1r7gebi532] {
    height: 100%;
    width: 100%;
    overflow: auto;
    position: relative;
}

.back-bar[b-1r7gebi532] {
    position: sticky;
    top: 0;
    height: 50px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    padding: 0 30px;
    z-index: 10;
    justify-content: space-between;
    box-shadow: none;
    transition: box-shadow 0.3s ease;
}

    .back-bar.show-border[b-1r7gebi532] {
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05)
    }

.back-button[b-1r7gebi532] {
    text-decoration: none;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

    .back-button:hover[b-1r7gebi532] {
        background-color: #e6f0ff;
    }

.collapsed-title[b-1r7gebi532] {
    font-size: 20px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
    /* New additions for animation */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .collapsed-title.show[b-1r7gebi532] {
        opacity: 1;
        visibility: visible;
    }

.main-title[b-1r7gebi532] {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 16px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
}

    .main-title.hidden[b-1r7gebi532] {
        opacity: 0;
        visibility: hidden;
    }

.content[b-1r7gebi532] {
    padding: 0 37px 20px;
    background-color: #f9f9f9;
}

html[data-bs-theme="dark"] .content[b-1r7gebi532],
html[data-bs-theme="dark"] .back-bar[b-1r7gebi532] {
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity)) !important;
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .back-button[b-1r7gebi532] {
    color: var(--dark-text-emphasis);
}

    html[data-bs-theme="dark"] .back-button:hover[b-1r7gebi532],
    html[data-bs-theme="dark"] .back-button:hover i[b-1r7gebi532] {
        color: var(--dark-link-hover) !important;
    }
/* /Components/Common/ShadowBox.razor.rz.scp.css */
/* Light mode styles */
.shadow-box[b-07w84cda3i] {
    border-radius: 8px;
    background-color: #f3f3f3;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Dark mode styles */
[data-bs-theme="dark"] .shadow-box[b-07w84cda3i] {
    background-color: #242424; /* Dark mode background */
    color: #f3f3f3; /* Dark mode text color */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* Adjusted shadow for dark mode */
}
/* /Components/Common/SSNFormatter.razor.rz.scp.css */
/* /Components/Common/TabControl.razor.rz.scp.css */
/* /Components/Common/TabItem.razor.rz.scp.css */
/* /Components/Common/TextAreas/InteractiveTextArea.razor.rz.scp.css */
/* /Components/Common/TextAreas/InteractiveTextInput.razor.rz.scp.css */
/* /Components/Common/TextField.razor.rz.scp.css */
/* /Components/Common/ThemeSwitcher.razor.rz.scp.css */
/* /Components/Common/Toasts/Toasts.razor.rz.scp.css */
/* /Components/Common/TreeView/TreeView.razor.rz.scp.css */
:root[b-nlkh2dnrvq] {
    --node-indent: 1.25rem; /* How much to indent each child level */
}

/* The main container for the tree */
.tree-view[b-nlkh2dnrvq] {
    margin: 0;
    padding: 0;
    list-style: none; /* Remove bullet points */
}

/* Ensure all nested ul and li elements do not have bullets or unnecessary margin/padding */
.tree-view ul[b-nlkh2dnrvq],
.tree-view li[b-nlkh2dnrvq] {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* The container for children */
.tree-children[b-nlkh2dnrvq] {
    margin: 0;
    padding: 0 0 0 var(--node-indent); /* Indent children */
    list-style: none; /* Remove bullets */
}
/* /Components/Common/TreeView/TreeViewNode.razor.rz.scp.css */
.tree-node[b-arryr83255],
.tree-children[b-arryr83255] {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 10pt;
}

.tree-children[b-arryr83255] {
    padding-left: var(--node-indent, 1.25rem);
}

.tree-node-header[b-arryr83255] {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    padding: 0;
}

.expand-icon[b-arryr83255] {
    margin-right: 4px;
    color: #333;
    font-size: 22px;
}

.caret[b-arryr83255],
.rotate-caret[b-arryr83255] {
    display: inline-block;
    transition: transform 0.2s ease;
    font-size: 22px;
    line-height: 22px;
    vertical-align: text-top;
}

.node-label[b-arryr83255] {
    padding: 4px;
    border-radius: 3px;
    transition: background-color 0.2s, width 0.2s;
    flex: 1;
    display: block;
}

.node-label.selected[b-arryr83255] {
    background: #dddddd;
    color: #000;
    width: 100%;
}

.node-icon[b-arryr83255] {
    margin-left: 4px;
    margin-right: 4px;
    color: #333;
    font-size: 16px;
}

/* Dark mode styles for .tree-node and .tree-children */
[data-bs-theme="dark"] .tree-node[b-arryr83255],
[data-bs-theme="dark"] .tree-children[b-arryr83255] {
    color: #e0e0e0;
}

/* Dark mode styles for .tree-children indentation */
[data-bs-theme="dark"] .tree-children[b-arryr83255] {
    padding-left: var(--node-indent, 1.25rem);
}

/* Dark mode styles for .tree-node-header */
[data-bs-theme="dark"] .tree-node-header[b-arryr83255] {
    color: #e0e0e0;
    cursor: pointer;
}

/* Dark mode styles for .expand-icon */
[data-bs-theme="dark"] .expand-icon[b-arryr83255] {
    color: #aaaaaa;
}

/* Dark mode styles for .caret and .rotate-caret */
[data-bs-theme="dark"] .caret[b-arryr83255],
[data-bs-theme="dark"] .rotate-caret[b-arryr83255] {
    color: #cccccc;
}

/* Dark mode styles for .node-label */
[data-bs-theme="dark"] .node-label[b-arryr83255] {
    color: #e0e0e0;
    background-color: transparent;
}

/* Dark mode styles for .node-label.selected */
[data-bs-theme="dark"] .node-label.selected[b-arryr83255] {
    background: #444444;
    color: #ffffff;
}

/* Dark mode styles for .node-icon */
[data-bs-theme="dark"] .node-icon[b-arryr83255] {
    color: #aaaaaa;
}
/* /Components/Common/VerticalTabs.razor.rz.scp.css */
/* Light mode styles */
.container-div[b-k5w91td0kd] {
    min-height: 300px;
    background-color: #ececec;
    border-radius: 15px;
    padding: 50px;
}

.nav-pills .nav-link.custom-active[b-k5w91td0kd],
.nav-pills .nav-link.active[b-k5w91td0kd] {
    background-color: #e1e1e1 !important; /* Light mode active background */
    color: black !important; /* Light mode text color */
}

.nav-pills .nav-link:hover[b-k5w91td0kd] {
    background-color: #e1e1e1; /* Light mode hover background */
    color: #333; /* Light mode hover text color */
}

.nav-pills .nav-link[b-k5w91td0kd] {
    color: #000; /* Light mode non-active tab color */
    margin-bottom:1px;
}

/* Dark mode styles */
[data-bs-theme="dark"] .container-div[b-k5w91td0kd] {
    background-color: #2b2b2b; /* Dark mode background color for container */
}

[data-bs-theme="dark"] .nav-pills .nav-link.custom-active[b-k5w91td0kd],
[data-bs-theme="dark"] .nav-pills .nav-link.active[b-k5w91td0kd] {
    background-color: #444444 !important; /* Dark mode active background */
    color: #ffffff !important; /* Dark mode text color */
}

[data-bs-theme="dark"] .nav-pills .nav-link[b-k5w91td0kd] {
    color: #cccccc; /* Dark mode non-active tab color */
}

[data-bs-theme="dark"] .nav-pills .nav-link:hover[b-k5w91td0kd] {
    background-color: #444444; /* Dark mode hover background */
    color: #ffffff; /* Dark mode hover text color */
}
/* /Components/Conversations/StartWorkflowOffCanvas.razor.rz.scp.css */
/* /Components/CustomDataTypes/CreateCustomDataTypeOffCanvas.razor.rz.scp.css */
/* /Components/CustomDataTypes/CustomDataTypeDropdown.razor.rz.scp.css */
/* /Components/CustomDataTypes/JsonRepresentationPreview.razor.rz.scp.css */
.schema-field-editor[b-43hconxisg] {
    position: relative;
    padding: 0;
}

    .schema-field-editor .btn-close-field-editor[b-43hconxisg] {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 30px;
        height: 30px;
        border-radius: 0;
    }
/* /Components/CustomDataTypes/SchemaFieldEditor.razor.rz.scp.css */
.schema-field-editor[b-9cgecdp7zu] {
    position: relative;
    padding: 0;
}

    .schema-field-editor .btn-close-field-editor[b-9cgecdp7zu] {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 30px;
        height: 30px;
        border-radius: 0;
    }
/* /Components/CustomDataTypes/SchemaPreview.razor.rz.scp.css */
.schema-field-editor[b-rqr3mpofzx] {
    position: relative;
    padding: 0;
}

    .schema-field-editor .btn-close-field-editor[b-rqr3mpofzx] {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 30px;
        height: 30px;
        border-radius: 0;
    }
/* /Components/Debug/JsonItemViewer.razor.rz.scp.css */
/* /Components/Diagrams/GatherRequirementsNodeWidget.razor.rz.scp.css */
.gather-requirements-node-container[b-7h6xefijk0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gather-requirements-node[b-7h6xefijk0] {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: #eef6ff;
    border: 2px solid #475CDE;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.diagram-node.selected .gather-requirements-node[b-7h6xefijk0] {
    border-color: #e9573f;
}

.widget-icon[b-7h6xefijk0] {
    font-size: 2.5rem;
    color: #003366;
}

.node-title[b-7h6xefijk0] {
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    max-width: 140px;
    word-wrap: break-word;
}

/* Input port (left, centered) */
.gather-requirements-node[b-7h6xefijk0]  .input-port {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.gather-requirements-node[b-7h6xefijk0]  .diagram-port.left {
    background-color: #ffaa44;
}

/* Output ports (right) */
.gather-requirements-node[b-7h6xefijk0]  .output-port {
    position: absolute;
    background-color: #333;
}

/* Port labels */
.gather-requirements-node[b-7h6xefijk0]  .port-label {
    position: absolute;
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    font-weight: 500;
    pointer-events: none;
}

html[data-bs-theme="dark"] .gather-requirements-node[b-7h6xefijk0] {
    background-color: var(--dark-bg-subtle);
}

html[data-bs-theme="dark"] .node-title[b-7h6xefijk0] {
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .diagram-link *[b-7h6xefijk0] {
    color: var(--dark-text-emphasis);
    fill: var(--dark-text-emphasis);
    stroke: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .gather-requirements-node[b-7h6xefijk0]  .diagram-port.output-port {
    background-color: var(--dark-text-emphasis);
}
/* /Components/Diagrams/PostMessageWidget.razor.rz.scp.css */
.post-message-node-container[b-995fl1076h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.post-message-node[b-995fl1076h] {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: #eef6ff;
    border: 2px solid #475CDE;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.diagram-node.selected .post-message-node[b-995fl1076h] {
    border-color: #e9573f;
}

.messsage-icon[b-995fl1076h] {
    font-size: 2.5rem;
    color: #003366;
}

.node-title[b-995fl1076h] {
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    max-width: 140px;
    word-wrap: break-word;
}

/* Input port (left, centered) */
.post-message-node[b-995fl1076h]  .input-port {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.post-message-node[b-995fl1076h]  .diagram-port.left {
    background-color: #ffaa44;
}

/* Output ports (right) */
.post-message-node[b-995fl1076h]  .output-port {
    position: absolute;
    background-color: #333;
}

/* Port labels */
.post-message-node[b-995fl1076h]  .port-label {
    position: absolute;
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    font-weight: 500;
    pointer-events: none;
}

html[data-bs-theme="dark"] .post-message-node[b-995fl1076h] {
    background-color: var(--dark-bg-subtle);
}

html[data-bs-theme="dark"] .node-title[b-995fl1076h] {
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .diagram-link *[b-995fl1076h] {
    color: var(--dark-text-emphasis);
    fill: var(--dark-text-emphasis);
    stroke: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .post-message-node[b-995fl1076h]  .diagram-port.output-port {
    background-color: var(--dark-text-emphasis);
}
/* /Components/Diagrams/RuleBasedRouterNodeWidget.razor.rz.scp.css */
.router-node-container[b-8hufn3ffyc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rule-based-router-node[b-8hufn3ffyc] {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: #f8f9fa;
    border: 2px solid #6c757d;
    border-radius: 16px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.diagram-node.selected .rule-based-router-node[b-8hufn3ffyc] {
    border-color: #e9573f;
}

.router-icon[b-8hufn3ffyc] {
    font-size: 2.5rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.node-title[b-8hufn3ffyc] {
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    max-width: 180px;
    word-wrap: break-word;
}

/* Input port */
.rule-based-router-node[b-8hufn3ffyc]  .input-port {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.rule-based-router-node[b-8hufn3ffyc]  .diagram-port.left.input-port {
    background-color: #ffaa44;
}

/* Sender ports */
.sender-ports[b-8hufn3ffyc] {
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    pointer-events: none;
}

.sender-port-container[b-8hufn3ffyc] {
    position: relative;
    pointer-events: all;
}

.rule-based-router-node[b-8hufn3ffyc]  .diagram-port.right {
    background-color: #333;
}

.sender-label[b-8hufn3ffyc] {
    position: absolute;
    right: 0;
    left: 15px;
    top: -10px;
    transform: translateY(-50%);
    margin-right: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    background-color: transparent;
    pointer-events: none;
}

/* Add sender form */
.add-sender-form[b-8hufn3ffyc] {
    margin-top: 15px;
    width: 100%;
    display: flex;
    gap: 5px;
}

    .add-sender-form .form-control[b-8hufn3ffyc] {
        font-size: 12px;
        padding: 0.15rem 0.3rem;
    }

    .add-sender-form .btn[b-8hufn3ffyc] {
        padding: 0.15rem 0.3rem;
        font-size: 12px;
    }

html[data-bs-theme="dark"] .rule-based-router-node[b-8hufn3ffyc] {
    background-color: var(--dark-bg-subtle);
}

html[data-bs-theme="dark"] .node-title[b-8hufn3ffyc],
html[data-bs-theme="dark"] .sender-label[b-8hufn3ffyc] {
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .rule-based-router-node[b-8hufn3ffyc]  .diagram-port.right {
    background-color: var(--dark-text-emphasis);
}
/* /Components/Diagrams/RunInferenceNodeWidget.razor.rz.scp.css */
.inference-node-container[b-k5c7ynesz3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.run-inference-node[b-k5c7ynesz3] {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: #eef6ff;
    border: 2px solid #99c2ff;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.diagram-node.selected .run-inference-node[b-k5c7ynesz3] {
    border-color: #e9573f;
}

.inference-icon[b-k5c7ynesz3] {
    font-size: 2.5rem;
    color: #003366;
}

.node-title[b-k5c7ynesz3] {
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    max-width: 140px;
    word-wrap: break-word;
}

/* Input port (left, centered) */
.run-inference-node[b-k5c7ynesz3]  .input-port {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.run-inference-node[b-k5c7ynesz3]  .diagram-port.left {
    background-color: #ffaa44;
}

/* Output ports (right) */
.run-inference-node[b-k5c7ynesz3]  .port-on-success {
    position: absolute;
    right: -8px;
    top: 30%;
}

.run-inference-node[b-k5c7ynesz3]  .diagram-port.right.port-on-success {
    background: green;
}

.run-inference-node[b-k5c7ynesz3]  .port-on-failure {
    position: absolute;
    right: -8px;
    top: 70%;
}

.run-inference-node[b-k5c7ynesz3]  .diagram-port.right.port-on-failure {
    background: red;
}

/* Port labels */
.run-inference-node[b-k5c7ynesz3]  .port-label {
    position: absolute;
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    font-weight: 500;
    pointer-events: none;
}

.run-inference-node[b-k5c7ynesz3]  .port-on-success::after {
    content: "OnSuccess";
    position: absolute;
    left: 100%;
    font-size: 0.9em;
    top: -15px;
    transform: translateY(-50%);
    margin-left: 8px;
    color: #333;
}

.run-inference-node[b-k5c7ynesz3]  .port-on-failure::after {
    content: "OnFailure";
    position: absolute;
    left: 100%;
    top: 20px;
    font-size: 0.9em;
    transform: translateY(-50%);
    margin-left: 8px;
    color: #333;
}

html[data-bs-theme="dark"] .run-inference-node[b-k5c7ynesz3] {
    background-color: var(--dark-bg-subtle);
}

html[data-bs-theme="dark"] .node-title[b-k5c7ynesz3] {
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .run-inference-node[b-k5c7ynesz3]  .port-on-success::after,
html[data-bs-theme="dark"] .run-inference-node[b-k5c7ynesz3]  .port-on-failure::after {
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .diagram-link *[b-k5c7ynesz3] {
    color: var(--dark-text-emphasis);
    fill: var(--dark-text-emphasis);
    stroke: var(--dark-text-emphasis);
}
/* /Components/Diagrams/UserQuestionNodeWidget.razor.rz.scp.css */
.user-question-node-container[b-kxihu3h9gh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.user-question-node[b-kxihu3h9gh] {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: #eef6ff;
    border: 2px solid #475CDE;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.diagram-node.selected .user-question-node[b-kxihu3h9gh] {
    border-color: #e9573f;
}

.question-icon[b-kxihu3h9gh] {
    font-size: 2.5rem;
    color: #003366;
}

.node-title[b-kxihu3h9gh] {
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    max-width: 140px;
    word-wrap: break-word;
}

/* Input port (left, centered) */
.user-question-node[b-kxihu3h9gh]  .input-port {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.user-question-node[b-kxihu3h9gh]  .diagram-port.left {
    background-color: #ffaa44;
}

/* Output ports (right) */
.user-question-node[b-kxihu3h9gh]  .output-port {
    position: absolute;
    background-color: #333;
}

/* Port labels */
.user-question-node[b-kxihu3h9gh]  .port-label {
    position: absolute;
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    font-weight: 500;
    pointer-events: none;
}

html[data-bs-theme="dark"] .user-question-node[b-kxihu3h9gh] {
    background-color: var(--dark-bg-subtle);
}

html[data-bs-theme="dark"] .node-title[b-kxihu3h9gh] {
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .diagram-link *[b-kxihu3h9gh] {
    color: var(--dark-text-emphasis);
    fill: var(--dark-text-emphasis);
    stroke: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .user-question-node[b-kxihu3h9gh]  .diagram-port.output-port {
    background-color: var(--dark-text-emphasis);
}
/* /Components/Diagrams/WorkflowStartNodeWidget.razor.rz.scp.css */
.workflow-node-container[b-8ikxk94nkb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.workflow-start-node[b-8ikxk94nkb] {
    position: relative;
    width: 100px;
    height: 100px;
    background-color: #f8f9fa;
    border: 2px solid #d9b38c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.diagram-node.selected .workflow-start-node[b-8ikxk94nkb] {
    border-color: #e9573f;
}

.workflow-icon[b-8ikxk94nkb] {
    font-size: 2.5rem;
    color: #7a5200;
}

.node-title[b-8ikxk94nkb] {
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    max-width: 120px;
    word-wrap: break-word;
}

.workflow-start-node[b-8ikxk94nkb]  .start-port {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.workflow-start-node[b-8ikxk94nkb]  .diagram-port {
    width: 14px;
    height: 14px;
    background-color: #ffaa44;
    border: 2px solid #fff;
    border-radius: 50%;
}

    .workflow-start-node[b-8ikxk94nkb]  .diagram-port:hover {
        background-color: #ff8000;
        cursor: pointer;
    }


html[data-bs-theme="dark"] .workflow-start-node[b-8ikxk94nkb] {
    background-color: var(--dark-bg-subtle);
}

html[data-bs-theme="dark"] .node-title[b-8ikxk94nkb] {
    color: var(--dark-text-emphasis);
}
/* /Components/Employees/EmployeeList.razor.rz.scp.css */
.employee-list[b-i3fpc1frzv] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    user-select: none;
}

.employee-card[b-i3fpc1frzv] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-radius: 8px;
    background-color: #efefef;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    min-height: 100px;
}

.profile-header[b-i3fpc1frzv] {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    flex-grow: 1;
}

.profile-pic[b-i3fpc1frzv] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
}

.profile-info[b-i3fpc1frzv] {
    flex: 1;
    min-width: 0;
}

.profile-info h3[b-i3fpc1frzv] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #4f4f4f;
}

.role[b-i3fpc1frzv] {
    margin-top: 4px;
    font-size: 13px;
    color: #474747;
    line-height: 1.2em;
    max-height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action-row[b-i3fpc1frzv] {
    display: flex;
    border-top: 1px solid #e3e3e3;
    background-color: #f5f5f5;
}

.action-button[b-i3fpc1frzv] {
    flex: 1;
    padding: 9px 0;
    font-size: 13px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    color: #737373;
    transition: background-color 0.2s ease-in-out;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action-button:hover[b-i3fpc1frzv] {
    background-color: #e3e3e3;
}

.action-button.left[b-i3fpc1frzv] {
    border-right: 0;
}

.action-button.right[b-i3fpc1frzv] {
    border-left: 1px solid #e3e3e3;
}

html[data-bs-theme="dark"] .employee-card[b-i3fpc1frzv],
html[data-bs-theme="dark"] .action-button[b-i3fpc1frzv] {
    background-color: var(--dark-bg-subtle);
}

html[data-bs-theme="dark"] .action-button[b-i3fpc1frzv] {
    color: var(--dark-text-emphasis);
}
/* /Components/Jobs/JobAssignmentList.razor.rz.scp.css */
.job-assignment-list-container[b-zfvmfkfc4i] {
    padding: 18px 0 0 0;
}
.job-assignment-header[b-zfvmfkfc4i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.assignment-table th[b-zfvmfkfc4i], .assignment-table td[b-zfvmfkfc4i] {
    vertical-align: middle;
    font-size: 0.98rem;
}
.assignment-table td[b-zfvmfkfc4i] {
    word-break: break-word;
}
/* /Components/Jobs/JobAssignmentTriggerList.razor.rz.scp.css */
.job-assignment-trigger-list-container[b-8ngkn4907z] {
    padding: 18px 0 0 0;
}
.job-assignment-trigger-header[b-8ngkn4907z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.trigger-table th[b-8ngkn4907z], .trigger-table td[b-8ngkn4907z] {
    vertical-align: middle;
    font-size: 0.98rem;
}
.trigger-table td[b-8ngkn4907z] {
    word-break: break-word;
}
/* /Components/Jobs/JobList.razor.rz.scp.css */
.layout-container[b-yldjpm6rlr] {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.column-2[b-yldjpm6rlr] {
    flex-grow: 1;
    overflow: hidden;
    padding: 24px 32px 32px 32px;
}

.jobs-header[b-yldjpm6rlr] {
    font-size: 28px;
    color: #454545;
    margin-bottom: 12px;
}

.jobs-search-bar[b-yldjpm6rlr] {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.table th[b-yldjpm6rlr],
.table td[b-yldjpm6rlr] {
    vertical-align: middle;
}

@media (max-width: 900px) {
    .layout-container[b-yldjpm6rlr] {
        flex-direction: column;
        height: auto;
    }
    .column-2[b-yldjpm6rlr] {
        padding: 12px;
    }
}
/* /Components/Jobs/JobToolList.razor.rz.scp.css */
.job-tool-list-container[b-50sgfdyi60] {
    padding: 18px 0 0 0;
}
.job-tool-header[b-50sgfdyi60] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.tool-table th[b-50sgfdyi60], .tool-table td[b-50sgfdyi60] {
    vertical-align: middle;
    font-size: 0.98rem;
}
.tool-table td[b-50sgfdyi60] {
    word-break: break-word;
}
/* /Components/Layout/Sidebar.razor.rz.scp.css */
.user-profile-picture .status-dot[b-24pwdg04iz] {
    position: absolute;
    bottom: 5px;
    right: 20px;
}

.status-dot[b-24pwdg04iz] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #fff;
}

.status-online[b-24pwdg04iz] {
    background: #4caf50;
}

.status-busy[b-24pwdg04iz] {
    background: #dc3545;
}

.status-offline[b-24pwdg04iz] {
    background: #9e9e9e;
}
/* /Components/Layout/SidebarMenuItem.razor.rz.scp.css */
/* /Components/McpTools/ToolDropdown.razor.rz.scp.css */
/* /Components/McpTools/UserAccessListItem.razor.rz.scp.css */
/* /Components/McpTools/UserAccessPanel.razor.rz.scp.css */
/* /Components/McpTools/UserMcpToolParameters.razor.rz.scp.css */
/* /Components/QuickBooks/EditInvoice.razor.rz.scp.css */
/* /Components/RealTime/RealtimeAgent.razor.rz.scp.css */
/* /Components/Servers/CreateMcpServerOffcanvas.razor.rz.scp.css */
/* /Components/Servers/EditMcpServerOffcanvas.razor.rz.scp.css */
/* /Components/Servers/McpServerDisplay.razor.rz.scp.css */
.mainContentContainer[b-4ornksleeh] {
    overflow-y: auto !important;
    height: 100%;
}
/* /Components/Settings/SettingNavigation.razor.rz.scp.css */
/* /Components/Settings/SettingsNavigationCard.razor.rz.scp.css */
/* /Components/Topics/AddTopicAttachmentCanvas.razor.rz.scp.css */
/* /Components/Topics/AddTopicNoteOffCanvas.razor.rz.scp.css */
/* /Components/Topics/CreateTopicOffCanvas.razor.rz.scp.css */
.table-attachments th[b-f3gxhss7rx] {
    font-weight: normal;
}
/* /Components/Topics/DeleteTopicAttachmentCanvas.razor.rz.scp.css */
/* /Components/Topics/TopicDetails.razor.rz.scp.css */
/* /Components/Topics/TopicDetails2.razor.rz.scp.css */
.workreq-container[b-dq3aooon86] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.top-row[b-dq3aooon86] {
    height: 55px;
    border-bottom: 1px solid #c8c8c8;
    padding: 0.5rem;
}

.bottom-row[b-dq3aooon86] {
    flex: 1;
    display: flex;
    overflow-y: auto;
}

.left-column[b-dq3aooon86] {
    width: 70%;
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.right-column[b-dq3aooon86] {
    min-width: 300px;
    max-width: 400px;
    width: 30%;
    border-left: 1px solid #c8c8c8;
    overflow-y: auto;
    padding: 20px;
}

html[data-bs-theme="dark"] .work-request-description[b-dq3aooon86] {
    color: #fff !important;
}


html[data-bs-theme="dark"] .notes-card .card-body .card-title[b-dq3aooon86] {
    color: var(--bs-black) !important;
}
/* /Components/Topics/UpdateTopicAttachmentCanvas.razor.rz.scp.css */
/* /Components/Topics/UpdateTopicOffCanvas.razor.rz.scp.css */
/* /Components/Users/CreateUserOffCanvas.razor.rz.scp.css */
/* /Components/Users/SystemPromptModal.razor.rz.scp.css */
/* /Components/Users/UpdateUserOffCanvas.razor.rz.scp.css */
/* /Components/Users/UserDropdown.razor.rz.scp.css */
/* /Components/Users/UserMcpToolsListItem.razor.rz.scp.css */
/* /Components/Users/UserMcpToolsPanel.razor.rz.scp.css */
/* /Components/Users/UserNameDisplay.razor.rz.scp.css */
/* /Components/Users/UserSearch.razor.rz.scp.css */
/* /Components/Users/UserSelect.razor.rz.scp.css */
/* /Components/VerticalNavMenu/VerticalNavDivider.razor.rz.scp.css */
.vertical-nav-divider[b-bbbstxa9nm] {
    height: 1px;
    background-color: #e5e7eb; /* Tailwind Gray-200 */
    margin: 8px 12px;
}
/* /Components/VerticalNavMenu/VerticalNavItem.razor.rz.scp.css */
.nav-item[b-l8wck6z00f] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #353535;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    border-radius: 8px;
    margin: 1px 4px;
}

.nav-item:hover[b-l8wck6z00f] {
    background-color: #f3f4f6;
}

.nav-item.selected[b-l8wck6z00f] {
    background-color: #e5e7eb;
    font-weight: 500;
    position: relative;
}

.nav-item .indicator[b-l8wck6z00f] {
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background-color: #59298c;
    border-radius: 2px;
}

.nav-item i[b-l8wck6z00f] {
    width: 20px;
    min-width: 20px;
    text-align: center;
    font-size: 16px;
    color: #545454;
}

.color-circle[b-l8wck6z00f] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    min-width: 12px;
    margin-right: 4px;
}
/* /Components/VerticalNavMenu/VerticalNavLabel.razor.rz.scp.css */
.vertical-nav-label[b-2qsxcvo8sr] {
    display: block;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: #545454;
    padding: 8px 16px 4px;
    letter-spacing: 0.05em;
}
/* /Components/VerticalNavMenu/VerticalNavMenu.razor.rz.scp.css */
.vertical-nav-menu[b-z4s8gtsb98] {
    background-color: #f9f9fb;
    height: 100vh;
    padding-top: 1rem;
    box-shadow: inset -1px 0 0 #e5e7eb;
    overflow-y: auto;
}
/* /Components/Workflows/CreateWorkflowOffcanvas.razor.rz.scp.css */
/* /Components/Workflows/CustomDataTypeVariableEditor.razor.rz.scp.css */
/* /Components/Workflows/DuplicateWorkflowOffCanvas.razor.rz.scp.css */
/* /Components/Workflows/EditWorkflowOffcanvas.razor.rz.scp.css */
/* /Components/Workflows/GatherRequirementProperties.razor.rz.scp.css */
.run-inference-props[b-kmrxxte1o3] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.run-inference-props h4[b-kmrxxte1o3] {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.prompt-block[b-kmrxxte1o3] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
    background-color: #f9f9f9;
    margin-bottom: 8px;
}

html[data-bs-theme="dark"] .prompt-block[b-kmrxxte1o3] {
    background-color: var(--dark-bg-subtle);
}

.drag-handle[b-kmrxxte1o3] {
    display: flex;
    justify-content: end;
    width: 100% !important;
}

.drag-handle:hover[b-kmrxxte1o3] {
    background-color: inherit;
    color: inherit;
}
/* /Components/Workflows/PostMessageProperties.razor.rz.scp.css */
/* /Components/Workflows/RuleBasedRouterNode.razor.rz.scp.css */
.rule-router-props[b-5sql2vcxj7] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .rule-router-props h4[b-5sql2vcxj7] {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
        color: #333;
    }

.route-block[b-5sql2vcxj7] {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
    background-color: #f9f9f9;
    margin-bottom: 8px;
}

    .route-block input.input[b-5sql2vcxj7] {
        flex: 1;
        min-width: 0;
    }

.validation-message[b-5sql2vcxj7] {
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
    padding-left: 2px;
}

html[data-bs-theme="dark"] .route-block[b-5sql2vcxj7] {
    background-color: var(--dark-bg-subtle);
}
/* /Components/Workflows/RunInferenceNode.razor.rz.scp.css */
.run-inference-node[b-0sf48smu3x] {
    width: 400px;
    height: 550px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: system-ui, sans-serif;
}

.node-header[b-0sf48smu3x] {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-field[b-0sf48smu3x] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

label[b-0sf48smu3x] {
    font-size: 13px;
    font-weight: 500;
    color: #444;
}

.input[b-0sf48smu3x] {
    padding: 8px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.tools[b-0sf48smu3x] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tool-tag[b-0sf48smu3x] {
    background-color: #d0d7de;
    color: #333;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.messages-scroll[b-0sf48smu3x] {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    height: 150px;
    overflow-y: auto;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.message[b-0sf48smu3x] {
    padding: 4px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}
/* /Components/Workflows/RunInferenceProperties.razor.rz.scp.css */
.run-inference-props[b-eafp953uuw] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.run-inference-props h4[b-eafp953uuw] {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.prompt-block[b-eafp953uuw] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
    background-color: #f9f9f9;
    margin-bottom: 8px;
}

html[data-bs-theme="dark"] .prompt-block[b-eafp953uuw] {
    background-color: var(--dark-bg-subtle);
}

.drag-handle[b-eafp953uuw] {
    display: flex;
    justify-content: end;
    width: 100% !important;
}

.drag-handle:hover[b-eafp953uuw] {
    background-color: inherit;
    color: inherit;
}
/* /Components/Workflows/UserQuestionProperties.razor.rz.scp.css */
.user-question-props[b-rs2jcdjqc7] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-question-props h4[b-rs2jcdjqc7] {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.prompt-block[b-rs2jcdjqc7] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
    background-color: #f9f9f9;
    margin-bottom: 8px;
}

html[data-bs-theme="dark"] .prompt-block[b-rs2jcdjqc7] {
    background-color: var(--dark-bg-subtle);
}
/* /Components/Workflows/VariableSelector.razor.rz.scp.css */
.input[b-xsacrcg0sz] {
    padding: 6px 8px;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: white;
    appearance: auto; /* show native chevron */
}
/* /Components/Workflows/WorkflowDropdown.razor.rz.scp.css */
/* /Components/Workflows/WorkflowEditor.razor.rz.scp.css */
html[data-bs-theme="dark"] .workflow-details-panel[b-i8e2u10oia] {
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
    color: #fff;
}

.workflow-details-panel table[b-i8e2u10oia],
.workflow-details-panel pre[b-i8e2u10oia],
.workflow-details-panel code[b-i8e2u10oia] {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}


.workflow-editor-tree[b-i8e2u10oia] {
    font-size: 1rem;
    line-height: 1.6;
}

    .workflow-editor-tree ol[b-i8e2u10oia] {
        padding-left: 22px;
        margin-bottom: 0.4em;
    }

    .workflow-editor-tree .stage-header[b-i8e2u10oia] {
        margin: 8px 0 4px;
        font-weight: 600;
        color: #365886;
    }

    .workflow-editor-tree .step-header[b-i8e2u10oia] {
        margin: 5px 0 3px 0;
        font-weight: 500;
        color: #1a535c;
    }

    .workflow-editor-tree .task-header[b-i8e2u10oia] {
        font-weight: 400;
        color: #222;
    }

    .workflow-editor-tree .small[b-i8e2u10oia] {
        font-size: 0.92em;
    }

    .workflow-editor-tree .badge[b-i8e2u10oia] {
        font-size: 0.85em;
        vertical-align: baseline;
        display: inline-block;
        margin-left: 3px;
    }

@media screen and (max-width: 767.98px) {
    .accordion-button[b-i8e2u10oia] {
        display: block;
    }
}
/* /Components/Workflows/WorkflowEditorV2.razor.rz.scp.css */
.workflow-editor[b-dignaqaewq] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #e5e5e5;
    border-radius: 8px;
    border: solid 1px #ccc;
    overflow: hidden;
    position: relative;
    user-select: none;
}

/* Main horizontal layout: toolbox | content */
.editor-main-layout[b-dignaqaewq] {
    display: flex;
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
}

/* Toolbox: full height on the left */
.editor-toolbox[b-dignaqaewq] {
    width: 20%;
    max-width: 250px;
    min-width: 220px;
    background-color: #f1f1f1;
    border-right: 1px solid #ccc;
    padding: 12px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    overflow-y: auto;
}

/* Right content: vertical stack */
.editor-content[b-dignaqaewq] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

/* Canvas area */
.editor-canvas[b-dignaqaewq] {
    flex-grow: 1;
    position: relative;
    overflow: auto;
    padding: 16px;
    background-color: #f6f6f6;
}

/* Node positions */
.node-wrapper[b-dignaqaewq] {
    position: absolute;
}

/* Variables editor at bottom */
.editor-bottom-row[b-dignaqaewq] {
    height: 30%;
    min-height: 230px;
    max-height: 350px;
    background-color: #fff;
    padding: 12px;
    box-sizing: border-box;
    overflow-y: auto;
    border-top: 1px solid #ccc;
}

/* ----------- Overlay for properties panel ----------- */
.properties-overlay[b-dignaqaewq] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: auto; /* overlay now blocks pointer events for all underlying content */
}

/* Backdrop covers everything, blocks interaction, is transparent and fades */
.overlay-backdrop[b-dignaqaewq] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
    z-index: 1;
    pointer-events: auto; /* eats all pointer events so nothing behind is clickable */
    opacity: 1;
    transition: opacity 0.3s;
}

/* Fading out */
.overlay-backdrop.closing[b-dignaqaewq] {
    opacity: 0;
}

.overlay-panel[b-dignaqaewq] {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 400px;
    max-width: 90vw;
    background-color: #fafafa;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
    padding: 20px;
    overflow-y: auto;
    z-index: 2;

    animation: slideInFromRight-b-dignaqaewq 0.3s forwards;
    pointer-events: auto;
}

.overlay-panel.closing[b-dignaqaewq] {
    animation: slideOutToRight-b-dignaqaewq 0.3s forwards;
}

.close-button[b-dignaqaewq] {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    z-index: 3;
}

@keyframes slideInFromRight-b-dignaqaewq {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0%);
    }
}

@keyframes slideOutToRight-b-dignaqaewq {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(100%);
    }
}

@media (max-width: 600px) {
    .overlay-panel[b-dignaqaewq] {
        width: 95vw;
        max-width: 95vw;
        padding: 12px;
    }
    .editor-toolbox[b-dignaqaewq] {
        min-width: 120px;
        max-width: 140px;
        width: 25%;
    }
}
/* /Components/Workflows/WorkflowEditorV3.razor.rz.scp.css */
.workflow-editor[b-2zvgae948g] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #e5e5e5;
    border-radius: 8px;
    border: solid 1px #ccc;
    overflow: hidden;
    position: relative;
    user-select: none;
}

/* Main horizontal layout: toolbox | content */
.editor-main-layout[b-2zvgae948g] {
    display: flex;
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
}

/* Toolbox: full height on the left */
.editor-toolbox[b-2zvgae948g] {
    width: 20%;
    max-width: 250px;
    min-width: 220px;
    background-color: #f1f1f1;
    border-right: 1px solid #ccc;
    padding: 12px 12px 0 12px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    overflow-y: auto;
}

/* Right content: vertical stack */
.editor-content[b-2zvgae948g] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

/* Canvas area */
.editor-canvas[b-2zvgae948g] {
    flex-grow: 1;
    position: relative;
    overflow: auto;
    background-color: #f6f6f6;
}

/* Node positions */
.node-wrapper[b-2zvgae948g] {
    position: absolute;
}

/* Variables editor at bottom */
.editor-bottom-row[b-2zvgae948g] {
    height: 30%;
    min-height: 230px;
    max-height: 350px;
    background-color: #fff;
    padding: 12px;
    box-sizing: border-box;
    overflow-y: auto;
    border-top: 1px solid #ccc;
}

/* ----------- Overlay for properties panel ----------- */
.properties-overlay[b-2zvgae948g] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: auto; /* overlay now blocks pointer events for all underlying content */
}

/* Backdrop covers everything, blocks interaction, is transparent and fades */
.overlay-backdrop[b-2zvgae948g] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
    z-index: 1;
    pointer-events: auto; /* eats all pointer events so nothing behind is clickable */
    opacity: 1;
    transition: opacity 0.3s;
}

    /* Fading out */
    .overlay-backdrop.closing[b-2zvgae948g] {
        opacity: 0;
    }

.overlay-panel[b-2zvgae948g] {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 400px;
    max-width: 90vw;
    background-color: #fafafa;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
    padding: 20px;
    overflow-y: auto;
    z-index: 2;
    animation: slideInFromRight-b-2zvgae948g 0.3s forwards;
    pointer-events: auto;
}

    .overlay-panel.closing[b-2zvgae948g] {
        animation: slideOutToRight-b-2zvgae948g 0.3s forwards;
    }

.close-button[b-2zvgae948g] {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    z-index: 3;
}

@keyframes slideInFromRight-b-2zvgae948g {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes slideOutToRight-b-2zvgae948g {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(100%);
    }
}

@media (max-width: 600px) {
    .overlay-panel[b-2zvgae948g] {
        width: 95vw;
        max-width: 95vw;
        padding: 12px;
    }

    .editor-toolbox[b-2zvgae948g] {
        min-width: 120px;
        max-width: 140px;
        width: 25%;
    }
}

/* Diagrams */
.diagram-container[b-2zvgae948g] {
    width: 100%;
    height: 100%;
    position: relative;
}

.node-properties-panel[b-2zvgae948g] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
    width: 250px;
}

[b-2zvgae948g] .diagram-node {
    border-radius: 5px;
}

[b-2zvgae948g] .diagram-port {
    width: 12px;
    height: 12px;
    background: #4a89dc;
    border-radius: 50%;
}

    [b-2zvgae948g] .diagram-port.top {
        top: -6px;
    }

    [b-2zvgae948g] .diagram-port.bottom {
        bottom: -6px;
    }

    [b-2zvgae948g] .diagram-port.left {
        left: -6px;
    }

    [b-2zvgae948g] .diagram-port.right {
        right: -6px;
    }


.editor-container[b-2zvgae948g] {
    display: flex;
    height: calc(100dvh - 60px);
}

.node-palette[b-2zvgae948g] {
    width: 200px;
    padding: 15px;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    overflow-y: auto;
}

.node-types[b-2zvgae948g] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.node-type[b-2zvgae948g] {
    padding: 10px;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: grab;
    text-align: center;
    transition: all 0.2s;
}

    .node-type:hover[b-2zvgae948g] {
        background-color: #e9ecef;
        transform: translateY(-2px);
    }

    .node-type:active[b-2zvgae948g] {
        cursor: grabbing;
    }

.diagram-area[b-2zvgae948g] {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.diagram-canvas[b-2zvgae948g] {
    width: 100%;
    height: 100%;
}

/* Dark Theme Overrides */
html[data-bs-theme="dark"] .workflow-editor[b-2zvgae948g] {
    background-color: var(--dark-bg-subtle);
    border: solid 1px var(--bs-border-color);
}

html[data-bs-theme="dark"] .editor-toolbox[b-2zvgae948g] {
    background-color: #2c2c2c;
    border-right: 1px solid var(--bs-border-color);
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .editor-canvas[b-2zvgae948g] {
    background-color: var(--dark-bg-subtle);
}

html[data-bs-theme="dark"] .editor-bottom-row[b-2zvgae948g] {
    background-color: #2a2a2a;
    border-top: 1px solid var(--bs-border-color);
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .overlay-panel[b-2zvgae948g] {
    background-color: #2b2b2b;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
}

html[data-bs-theme="dark"] .close-button[b-2zvgae948g] {
    color: #ccc;
}

html[data-bs-theme="dark"] .node-properties-panel[b-2zvgae948g] {
    background-color: #2c2c2c;
    border: 1px solid var(--bs-border-color);
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .node-palette[b-2zvgae948g] {
    background-color: #2b2b2b;
    border-right: 1px solid var(--bs-border-color);
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] .node-type[b-2zvgae948g] {
    background-color: #3a3a3a;
    border: 1px solid var(--bs-border-color);
    color: var(--dark-text-emphasis);
}

    html[data-bs-theme="dark"] .node-type:hover[b-2zvgae948g] {
        background-color: #444;
    }

html[data-bs-theme="dark"] .diagram-area[b-2zvgae948g] {
    background-color: #1e1e1e;
}

html[data-bs-theme="dark"] .diagram-link[b-2zvgae948g] {
    stroke: white !important;
    background: red;
}
/* /Components/Workflows/WorkflowList.razor.rz.scp.css */
/* Table Container */
.table-container[b-050qqihbbn] {
    overflow: hidden;
    background-color: #fff;
    /* No border, no border-radius */
}

/* Table Styles */
.status-table[b-050qqihbbn] {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    background-color: #fff;
}

.status-table th[b-050qqihbbn],
.status-table td[b-050qqihbbn] {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.status-table thead[b-050qqihbbn] {
    background-color: #f9f9f9;
    font-weight: 600;
}

.status-table thead th[b-050qqihbbn] {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #666;
}

.status-table tbody tr:hover[b-050qqihbbn] {
    background-color: #f5f7fa;
    transition: background 0.15s;
}

/* subtle header row for each group */
.group-header[b-050qqihbbn] {
    background:#f9f9f9;
    font-weight:600;
}

/* lighter text in header description */
.muted[b-050qqihbbn] { color:#555; font-weight:normal; }


.table-shell[b-050qqihbbn] {
    display: flex;
    flex-direction: column;
    user-select: none;
}

/* Detached top UI bar */
.table-header-detached[b-050qqihbbn] {
    padding: 8px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Detached bottom UI bar */
.table-footer-detached[b-050qqihbbn] {
    padding: 12px;
    background-color: #f5f5f5;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

/* Search box styling */
.search-box[b-050qqihbbn] {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

/* Existing table styles kept intact */
.table-container[b-050qqihbbn] {
    background-color: #fff;
    overflow: hidden;
}

.status-table[b-050qqihbbn] {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    background-color: #fff;
}

.status-table th[b-050qqihbbn],
.status-table td[b-050qqihbbn] {
    padding: 8px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.status-table thead[b-050qqihbbn] {
    background-color: #f9f9f9;
    font-weight: 600;
}

.status-table thead th[b-050qqihbbn] {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #666;
}

.status-table tbody tr:hover[b-050qqihbbn] {
    background-color: #f5f7fa;
    transition: background 0.15s;
}

/* Container for search input and icon */
.search-container[b-050qqihbbn] {
    position: relative;
    width: 350px;
    margin-left: auto; /* right-align */
    margin-bottom: 10px;
}

/* Icon inside input */
.search-icon[b-050qqihbbn] {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 14px;
}

/* Search input styling */
.search-box[b-050qqihbbn] {
    width: 100%;
    padding: 8px 12px 8px 32px; /* space for icon */
    font-size: 14px;
    border: none;
    outline: none;
    background-color: #e5e5e5;
    color: #333;
}

/* Placeholder color */
.search-box[b-050qqihbbn]::placeholder {
    color: #666;
}

html[data-bs-theme="dark"] .search-box[b-050qqihbbn] {
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
}

html[data-bs-theme="dark"] .table-shell[b-050qqihbbn],
html[data-bs-theme="dark"] .table-header-detached[b-050qqihbbn],
html[data-bs-theme="dark"] .table-footer-detached[b-050qqihbbn],
html[data-bs-theme="dark"] .table-container[b-050qqihbbn],
html[data-bs-theme="dark"] .status-table[b-050qqihbbn],
html[data-bs-theme="dark"] .status-table thead[b-050qqihbbn],
html[data-bs-theme="dark"] .status-table thead th[b-050qqihbbn] {
    background-color: var(--dark-bg-subtle);
    color: var(--dark-text-emphasis);
}

html[data-bs-theme="dark"] td.description-column:hover[b-050qqihbbn] {
    color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
}
/* /Components/Workflows/WorkflowToolbox.razor.rz.scp.css */
.workflow-toolbox[b-ducjagiqtq] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: system-ui, sans-serif;
}

.toolbox-title[b-ducjagiqtq] {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.tool-item[b-ducjagiqtq] {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.999;
    transform: translate(0, 0);
    padding: 10px 12px;
    border-radius: 6px;
    cursor: grab;
    font-size: 14px;
    user-select: none;
    transition: background 0.2s;
}

.tool-item i[b-ducjagiqtq] {
    font-size: 16px;
    color: #555;
}

.tool-item:hover[b-ducjagiqtq] {
    background-color: #d8d8d8;
}


html[data-bs-theme="dark"] .tool-item:hover[b-ducjagiqtq],
html[data-bs-theme="dark"] .tool-item:hover i[b-ducjagiqtq] {
    color: var(--dark-link-hover) !important;
}
/* /Components/Workflows/WorkflowVariableDefaultValueInput.razor.rz.scp.css */
/* /Components/Workflows/WorkflowVariablesEditor.razor.rz.scp.css */
.variable-editor[b-3o2os95u7f] {
    height: 100%;
    width: 100%;
}

thead.sticky-top[b-3o2os95u7f] {
    background-color: var(--bs-light);
    z-index: 1;
}

.action-cell[b-3o2os95u7f] {
    display:flex;
    justify-content: center;
}

.table > :not(caption) > * > *[b-3o2os95u7f] {
    border-bottom-width: 0;
}

@media screen and (max-width: 767.98px) {
    .nav[b-3o2os95u7f] {
        display: flex;
        flex-direction: column;
    }

        .nav .nav-item .nav-link[b-3o2os95u7f] {
            transition: 0.2s all ease-in;
        }

            .nav .nav-item .nav-link:not(.active)[b-3o2os95u7f] {
                padding-left: 0;
            }


    .table-responsive table thead[b-3o2os95u7f] {
        display: none;
    }

    .table-responsive table[b-3o2os95u7f], .table-responsive tbody[b-3o2os95u7f], .table-responsive tr[b-3o2os95u7f], .table-responsive td[b-3o2os95u7f] {
        display: block;
        width: 100%;
    }

    .table-responsive tr[b-3o2os95u7f] {
        margin-bottom: 1rem;
        border: 1px solid var(--bs-border-color);
        border-radius: .375rem;
        padding: .5rem;
    }

    .table-responsive td[b-3o2os95u7f] {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
    }

        .table-responsive td:not(.action-cell)[b-3o2os95u7f]::before {
            content: attr(data-label);
            position: absolute;
            left: 1rem;
            width: 45%;
            padding-right: .5rem;
            white-space: nowrap;
            text-align: left;
            font-weight: 600;
        }

    .action-cell[b-3o2os95u7f] {
        justify-content: end;
    }
}
/* /Components/WorkflowScheduling/CreateWorkflowSchedulingOffcanvas.razor.rz.scp.css */
/* /Components/WorkflowScheduling/EditWorkflowSchedulingOffcanvas.razor.rz.scp.css */
/* /Components/WorkflowScheduling/WorkflowSchedulingDetails.razor.rz.scp.css */
html[data-bs-theme="dark"] .workflow-details-panel[b-vzejtxkuy5] {
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
    color: #fff;
}

.workflow-details-panel table[b-vzejtxkuy5],
.workflow-details-panel pre[b-vzejtxkuy5],
.workflow-details-panel code[b-vzejtxkuy5] {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.workflow-editor-tree[b-vzejtxkuy5] {
    font-size: 1rem;
    line-height: 1.6;
}

    .workflow-editor-tree ol[b-vzejtxkuy5] {
        padding-left: 22px;
        margin-bottom: 0.4em;
    }

    .workflow-editor-tree .stage-header[b-vzejtxkuy5] {
        margin: 8px 0 4px;
        font-weight: 600;
        color: #365886;
    }

    .workflow-editor-tree .step-header[b-vzejtxkuy5] {
        margin: 5px 0 3px 0;
        font-weight: 500;
        color: #1a535c;
    }

    .workflow-editor-tree .task-header[b-vzejtxkuy5] {
        font-weight: 400;
        color: #222;
    }

    .workflow-editor-tree .small[b-vzejtxkuy5] {
        font-size: 0.92em;
    }

    .workflow-editor-tree .badge[b-vzejtxkuy5] {
        font-size: 0.85em;
        vertical-align: baseline;
        display: inline-block;
        margin-left: 3px;
    }

@media screen and (max-width: 767.98px) {
    .accordion-button[b-vzejtxkuy5] {
        display: block;
    }
}
/* /Components/WorkflowScheduling/WorkflowSchedulingHistory.razor.rz.scp.css */
html[data-bs-theme="dark"] .workflow-details-panel[b-29yyljhak0] {
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
    color: #fff;
}

.workflow-details-panel table[b-29yyljhak0],
.workflow-details-panel pre[b-29yyljhak0],
.workflow-details-panel code[b-29yyljhak0] {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.workflow-editor-tree[b-29yyljhak0] {
    font-size: 1rem;
    line-height: 1.6;
}

    .workflow-editor-tree ol[b-29yyljhak0] {
        padding-left: 22px;
        margin-bottom: 0.4em;
    }

    .workflow-editor-tree .stage-header[b-29yyljhak0] {
        margin: 8px 0 4px;
        font-weight: 600;
        color: #365886;
    }

    .workflow-editor-tree .step-header[b-29yyljhak0] {
        margin: 5px 0 3px 0;
        font-weight: 500;
        color: #1a535c;
    }

    .workflow-editor-tree .task-header[b-29yyljhak0] {
        font-weight: 400;
        color: #222;
    }

    .workflow-editor-tree .small[b-29yyljhak0] {
        font-size: 0.92em;
    }

    .workflow-editor-tree .badge[b-29yyljhak0] {
        font-size: 0.85em;
        vertical-align: baseline;
        display: inline-block;
        margin-left: 3px;
    }

@media screen and (max-width: 767.98px) {
    .accordion-button[b-29yyljhak0] {
        display: block;
    }
}
/* /Layout/BusyKeysLayout.razor.rz.scp.css */
.bk-layout[b-obucgk3p07] {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100vh;
}

.column[b-obucgk3p07] {
    padding: 0;
}

.nav-column[b-obucgk3p07] {
    min-width: 200px !important;
    width: 200px !important;
    background-color: #f0f0f0;
}

.app-column[b-obucgk3p07] {
    width: 400px;
    background-color: #fbfbfb;
}

.content-column[b-obucgk3p07] {
    flex: 1;
    background-color: #f5f5f5;
    height: 100%;
}

.separator[b-obucgk3p07] {
    width: 1px;
    background-color: #dddddd;
}
/* /Layout/BusyKeysThemeLayout.razor.rz.scp.css */
.dvh-100[b-vwfa3gnpie] {
    height: 100dvh!important;
}

.bk-layout[b-vwfa3gnpie] {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100vh;
}

.column[b-vwfa3gnpie] {
    padding: 0;
}

.nav-column[b-vwfa3gnpie] {
    min-width: 200px !important;
    width: 200px !important;
    background-color: #f0f0f0;
}

.app-column[b-vwfa3gnpie] {
    width: 400px;
    background-color: #fbfbfb;
}

.content-column[b-vwfa3gnpie] {
    flex: 1;
    background-color: #f5f5f5;
    height: 100%;
}

.separator[b-vwfa3gnpie] {
    width: 1px;
    background-color: #dddddd;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-d9h6ts73fw] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-d9h6ts73fw] {
    flex: 1;
}

.sidebar[b-d9h6ts73fw] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-d9h6ts73fw] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-d9h6ts73fw]  a, .top-row[b-d9h6ts73fw]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-d9h6ts73fw]  a:hover, .top-row[b-d9h6ts73fw]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-d9h6ts73fw]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row[b-d9h6ts73fw] {
        justify-content: space-between;
    }

    .top-row[b-d9h6ts73fw]  a, .top-row[b-d9h6ts73fw]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-d9h6ts73fw] {
        flex-direction: row;
    }

    .sidebar[b-d9h6ts73fw] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-d9h6ts73fw] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-d9h6ts73fw]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-d9h6ts73fw], article[b-d9h6ts73fw] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-e6xbn5w713] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-e6xbn5w713] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-e6xbn5w713] {
    font-size: 1.1rem;
}

.bi[b-e6xbn5w713] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-e6xbn5w713] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-e6xbn5w713] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-e6xbn5w713] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-e6xbn5w713] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-e6xbn5w713] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-e6xbn5w713] {
    padding-bottom: 1rem;
}

.nav-item[b-e6xbn5w713]  a {
    color: #d7d7d7;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

.nav-item[b-e6xbn5w713]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-e6xbn5w713]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-e6xbn5w713] {
        display: none;
    }

    .collapse[b-e6xbn5w713] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-e6xbn5w713] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Agents.razor.rz.scp.css */
/* /Pages/BusinessUnits/BusinessUnitDetail.razor.rz.scp.css */
.layout-container[b-yfa7t3ypgm] {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.column-1[b-yfa7t3ypgm] {
    width: 275px;
    flex-shrink: 0;
}

.column-2[b-yfa7t3ypgm] {
    flex-grow: 1;
    overflow: hidden;
}

.detail-section[b-yfa7t3ypgm] {
    padding: 16px 0;
}

.detail-section h2[b-yfa7t3ypgm] {
    font-size: 28px;
    margin-bottom: 8px;
    color: #454545;
}

.description[b-yfa7t3ypgm] {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
}

.detail-fields[b-yfa7t3ypgm] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field[b-yfa7t3ypgm] {
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.label[b-yfa7t3ypgm] {
    font-weight: 600;
    color: #333;
    min-width: 150px;
}

.value a[b-yfa7t3ypgm] {
    color: #007bff;
    text-decoration: none;
}

.value a:hover[b-yfa7t3ypgm] {
    text-decoration: underline;
}



.businessunit-detail-section-header[b-yfa7t3ypgm] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 8px;
}
/* /Pages/BusinessUnits/BusinessUnitsPage.razor.rz.scp.css */
.flex-container[b-36gwiqkgdu] {
    display: flex;
    height: 100%;
    width: 100%;
}

.content[b-36gwiqkgdu] {
    height: 100%;
}

.left-panel[b-36gwiqkgdu] {
    width: 300px;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #bbbbbb #f1f1f1;
    background-color: #f9f9f9;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    border-right: solid 1px #dddddd;
}

.chat-column[b-36gwiqkgdu] {
    flex: 1;
    margin-left: 20px;
    border-right: 1px solid #dddddd;
    padding-right: 10px;
}

.info-column[b-36gwiqkgdu] {
    width: 300px;
    padding-left: 10px;
}

.search-bar-wrapper[b-36gwiqkgdu] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.search-bar-wrapper .search-input[b-36gwiqkgdu] {
    flex-grow: 1;
}

.search-bar-wrapper .icon-link[b-36gwiqkgdu] {
    flex-shrink: 0;
}
/* /Pages/BusinessUnits/WorkflowDetail.razor.rz.scp.css */
.layout-container[b-5i2wo94jvn] {
    display: flex;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
}

.column-1[b-5i2wo94jvn] {
    width: 275px;
    flex-shrink: 0;
}

.column-2[b-5i2wo94jvn] {
    flex-grow: 1;
    overflow: hidden;
}

.detail-section[b-5i2wo94jvn] {
    padding: 16px 0;
}

.detail-section h2[b-5i2wo94jvn] {
    font-size: 28px;
    margin-bottom: 8px;
    color: #454545;
}

.description[b-5i2wo94jvn] {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
}

.detail-fields[b-5i2wo94jvn] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field[b-5i2wo94jvn] {
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.label[b-5i2wo94jvn] {
    font-weight: 600;
    color: #333;
    min-width: 150px;
}

.value a[b-5i2wo94jvn] {
    color: #007bff;
    text-decoration: none;
}

.value a:hover[b-5i2wo94jvn] {
    text-decoration: underline;
}
/* /Pages/Chat.razor.rz.scp.css */
/* /Pages/ConnectedServices/List.razor.rz.scp.css */
/* /Pages/Conversations/ConversationsPage.razor.rz.scp.css */
.conversations-layout[b-86fb4f8cdi] {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contacts-pane[b-86fb4f8cdi] {
    width: 365px;
    max-width: 100%;
    border-right: 1px solid #ddd;
    padding: 16px;
    box-sizing: border-box;
    overflow-y: auto;
    background: #f8f9fa;
    user-select: none
}

html[data-bs-theme="dark"] .contacts-pane[b-86fb4f8cdi] {
    background: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
}

.message-wrapper[b-86fb4f8cdi] {
    position: relative;
}

.message-wrapper[b-86fb4f8cdi]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 72px;
    right: 16px;
    height: 1px;
    background-color: #e6e6ed; /* updated color */
}

.message-wrapper[b-86fb4f8cdi] {
    position: relative;
}

/* Bottom separator */
.message-wrapper[b-86fb4f8cdi]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 72px;
    right: 16px;
    height: 1px;
    background-color: #e6e6ed;
    z-index: 1;
}

/* Hide the bottom line for the selected item */
.message-wrapper.selected[b-86fb4f8cdi]::after {
    display: none;
}

/* Hide the bottom line from the item BEFORE the selected one using :has() */
.message-wrapper:has(+ .message-wrapper.selected)[b-86fb4f8cdi]::after {
    display: none;
}

/* Last item never gets a line */
.message-wrapper:last-child[b-86fb4f8cdi]::after {
    display: none;
}

.chat-pane[b-86fb4f8cdi] {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Optional styling for contact list */
.contact-list[b-86fb4f8cdi] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item[b-86fb4f8cdi] {
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 150ms ease;
}
.contact-item:hover[b-86fb4f8cdi] {
    background: #ececec;
}

/* Container for search input and icon */
.search-container[b-86fb4f8cdi] {
    position: relative;
    margin-left: auto; /* right-align */
    margin-bottom: 10px;
}

/* Icon inside input */
.search-icon[b-86fb4f8cdi] {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 14px;
}

/* Search input styling */
.search-box[b-86fb4f8cdi] {
    width: 100%;
    padding: 8px 12px 8px 32px; /* space for icon */
    font-size: 14px;
    border: none;
    outline: none;
    background-color: #e6e6ed;
    border-radius: 12px;
    color: #333;
}

html[data-bs-theme="dark"] .search-box[b-86fb4f8cdi] {
    background-color: var(--dark-bg-subtle);
}
/* Placeholder color */
.search-box[b-86fb4f8cdi]::placeholder {
    color: #666;
}

/* /Pages/Conversations/ConversationsPageV2.razor.rz.scp.css */
.conversations-layout[b-i5n0hbcki4] {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contacts-pane[b-i5n0hbcki4] {
    width: 365px;
    max-width: 100%;
    border-right: 1px solid #ddd;
    padding: 16px;
    box-sizing: border-box;
    overflow-y: auto;
    background: #f8f9fa;
    user-select: none
}

html[data-bs-theme="dark"] .contacts-pane[b-i5n0hbcki4] {
    background: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
}

.message-wrapper[b-i5n0hbcki4] {
    position: relative;
}

.message-wrapper[b-i5n0hbcki4]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 72px;
    right: 16px;
    height: 1px;
    background-color: #e6e6ed; /* updated color */
}

.message-wrapper[b-i5n0hbcki4] {
    position: relative;
}

/* Bottom separator */
.message-wrapper[b-i5n0hbcki4]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 72px;
    right: 16px;
    height: 1px;
    background-color: #e6e6ed;
    z-index: 1;
}

/* Hide the bottom line for the selected item */
.message-wrapper.selected[b-i5n0hbcki4]::after {
    display: none;
}

/* Hide the bottom line from the item BEFORE the selected one using :has() */
.message-wrapper:has(+ .message-wrapper.selected)[b-i5n0hbcki4]::after {
    display: none;
}

/* Last item never gets a line */
.message-wrapper:last-child[b-i5n0hbcki4]::after {
    display: none;
}

.chat-pane[b-i5n0hbcki4] {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Optional styling for contact list */
.contact-list[b-i5n0hbcki4] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item[b-i5n0hbcki4] {
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 150ms ease;
}
.contact-item:hover[b-i5n0hbcki4] {
    background: #ececec;
}

/* Container for search input and icon */
.search-container[b-i5n0hbcki4] {
    position: relative;
    margin-left: auto; /* right-align */
    margin-bottom: 10px;
}

/* Icon inside input */
.search-icon[b-i5n0hbcki4] {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 14px;
}

/* Search input styling */
.search-box[b-i5n0hbcki4] {
    width: 100%;
    padding: 8px 12px 8px 32px; /* space for icon */
    font-size: 14px;
    border: none;
    outline: none;
    background-color: #e6e6ed;
    border-radius: 12px;
    color: #333;
}

html[data-bs-theme="dark"] .search-box[b-i5n0hbcki4] {
    background-color: var(--dark-bg-subtle);
}
/* Placeholder color */
.search-box[b-i5n0hbcki4]::placeholder {
    color: #666;
}

/* /Pages/CustomDataTypes/CustomDataTypesPage.razor.rz.scp.css */
.flex-container[b-4f2hv5bltq] {
    display: flex;
    height: 100%;
    width: 100%;
}

.content[b-4f2hv5bltq] {
    height: 100%;
}

.left-panel[b-4f2hv5bltq] {
    width: 300px;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #bbbbbb #f1f1f1;
    background-color: #f9f9f9;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    border-right: solid 1px #dddddd;
}

.info-column[b-4f2hv5bltq] {
    flex: 1;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #bbbbbb #f1f1f1;
}

.search-bar-wrapper[b-4f2hv5bltq] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.search-bar-wrapper .search-input[b-4f2hv5bltq] {
    flex-grow: 1;
}

.search-bar-wrapper .icon-link[b-4f2hv5bltq] {
    flex-shrink: 0;
}
/* /Pages/Employees/EmployeesPage.razor.rz.scp.css */
.flex-container[b-5zv9dcccw5] {
    display: flex;
    height: 100%;
    width: 100%;
}

.content[b-5zv9dcccw5] {
    height: 100%;
}

.left-panel[b-5zv9dcccw5] {
    width: 300px;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #bbbbbb #f1f1f1;
    background-color: #f9f9f9;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    border-right: 1px solid #dddddd;
}

.info-column[b-5zv9dcccw5] {
    /* Takes remaining space to the right. */
    flex: 1;
    padding-left: 10px;
}

.search-bar-wrapper[b-5zv9dcccw5] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.search-bar-wrapper .search-input[b-5zv9dcccw5] {
    flex-grow: 1;
}

.search-bar-wrapper .icon-link[b-5zv9dcccw5] {
    flex-shrink: 0;
}
/* /Pages/Home.razor.rz.scp.css */
.messages-layout[b-vqh4vhcaif] {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.column[b-vqh4vhcaif] {
    padding: 0;
}

.contact-column[b-vqh4vhcaif] {
    width: 300px;
    background-color: #e8e8e8;
}

.chat-column[b-vqh4vhcaif] {
    flex: 1;
    background-color: #f5f5f5;
}

.separator[b-vqh4vhcaif] {
    width: 1px;
    background-color: #dddddd;
}
/* /Pages/Inbox.razor.rz.scp.css */
/* /Pages/McpTools/McpToolUsersPage.razor.rz.scp.css */
/* /Pages/Profiles/Profile.razor.rz.scp.css */
/* /Pages/Servers/McpServersPage.razor.rz.scp.css */
/* /Pages/Settings/SettingsPage.razor.rz.scp.css */
/* /Pages/Topics/TopicsPage.razor.rz.scp.css */
.flex-container[b-z1qqesm1sa] {
    display: flex;
    height: 100%;
    width: 100%;
}

.content[b-z1qqesm1sa] {
    height: 100%;
}

.left-panel[b-z1qqesm1sa] {
    width: 300px;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #bbbbbb #f1f1f1;
    background-color: #f9f9f9;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    border-right: solid 1px #dddddd;
}

.info-column[b-z1qqesm1sa] {
    flex: 1;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #bbbbbb #f1f1f1;
}

.search-bar-wrapper[b-z1qqesm1sa] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.search-bar-wrapper .search-input[b-z1qqesm1sa] {
    flex-grow: 1;
}

.search-bar-wrapper .icon-link[b-z1qqesm1sa] {
    flex-shrink: 0;
}
/* /Pages/Workflows/WorkflowsPage.razor.rz.scp.css */
/*.flex-container {
    display: flex;
    height: 100%;
    width: 100%;
}

.content {
    height: 100%;
}

.left-panel {
    width: 300px;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: thin;*/         /* For Firefox */
    /*scrollbar-color: #bbbbbb #f1f1f1;*/ /* For Firefox */
    /*background-color: #f9f9f9;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    border-right: solid 1px #dddddd;
}*/

/* Renamed from chat-column to content-column */
/*.content-column {
    flex: 1;
    padding-right: 10px;
}

.search-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.search-bar-wrapper .search-input {
    flex-grow: 1;
}

.search-bar-wrapper .icon-link {
    flex-shrink: 0;
}*/
/* /Pages/WorkflowScheduling/WorkflowSchedulingPage.razor.rz.scp.css */
.flex-container[b-gorp5bkkw8] {
    display: flex;
    height: 100%;
    width: 100%;
}

.content[b-gorp5bkkw8] {
    height: 100%;
}

.left-panel[b-gorp5bkkw8] {
    width: 300px;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #bbbbbb #f1f1f1;
    background-color: #f9f9f9;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    border-right: solid 1px #dddddd;
}

.info-column[b-gorp5bkkw8] {
    flex: 1;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #bbbbbb #f1f1f1;
}

.search-bar-wrapper[b-gorp5bkkw8] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.search-bar-wrapper .search-input[b-gorp5bkkw8] {
    flex-grow: 1;
}

.search-bar-wrapper .icon-link[b-gorp5bkkw8] {
    flex-shrink: 0;
}
/* /Shared/SortableList.razor.rz.scp.css */
[b-opbtcd3a2u] /* 
  you need the ::deep identifier if you are using scoped styles like this
  because scoped styles are only applied to markup in the component, not
  to the markup inside the render fragment.
*/
 .sortable-ghost {
    visibility: hidden;
}

[b-opbtcd3a2u] .sortable-fallback {
    opacity: 1 !important
}
