.forgot-password_form_form__wwHR3{display:flex;flex-direction:column}.forgot-password_form_FormFooter__baKrX{margin-top:16px}.forgot-password_form_FormLabelText__XJBAI{font-size:13px;font-weight:500}.forgot-password_form_ButtonLink__qUlZF{color:#53bdea}
.access-form_FormLabelText__2o\+zR{font-size:13px;font-weight:500}.access-form_ButtonLink__fjoEe{color:#53bdea}.access-form_ContinueWithDevider__deCGQ{position:relative;margin:30px 0 20px 0;border-bottom:1px solid #e2e6ea}.access-form_CenteredLabelText__zBoHT{font-size:13px;font-weight:500;position:absolute;top:-6px;left:50%;transform:translate(-50%);padding:0 16px;background-color:var(--tasks-group-bg)}
.form-patial_FlexContainer__CPEIA{background-color:var(--tasks-board-bg);width:100%;margin:auto;display:flex;color:var(--color-primary)}.form-patial_col__QDuxk{flex-basis:50%;height:100vh;overflow-y:auto;overflow-x:hidden;align-items:center;justify-content:center;background-color:var(--color-bg)}.form-patial_col__QDuxk:nth-child(1){background-color:var(--tasks-group-bg)}
.input_InputContainer__js5g2{flex:1;display:flex;flex-wrap:wrap}.input_InputContainer__js5g2 label{flex-basis:90%;font-size:13px;font-weight:500;margin:5px 0 10px 0;display:block}.input_Input__UzgBh{flex:1;height:42px;border:1px solid var(--form-border);outline:none;padding:0 10px;border-radius:5px}
.bluesnap-button_hotmartButton__\+cDa3{background-color:var(--color-accent);color:#fff;min-height:35px;min-width:200px;max-width:750px;padding:10px 24px}.bluesnap-button_hotmartButton__\+cDa3.bluesnap-button_white__RoCDT{background-color:var(--color-surface)}.bluesnap-button_hotmartButton__\+cDa3 img{height:25px}.bluesnap-button_blueButton__GALJl{background:#e8f8fd;color:#53bdea !important;opacity:1 !important;font-weight:500 !important}.bluesnap-button_pinkButton__9Rt7L{background:linear-gradient(87.82deg, #f656a1 0%, #ffa3ce 100%);color:var(--tasks-board-bg) !important;font-size:20px;box-shadow:2px 6px 24px 0px rgba(255,71,160,.5);transition:transform .1s,box-shadow .1s}.bluesnap-button_pinkButton__9Rt7L:hover{transform:scale(1.05);box-shadow:0 13px 27px -5px rgba(50,50,93,.15),0 8px 16px -8px rgba(0,0,0,.2)}.bluesnap-button_transparentButton__EREu\+{background:none;color:#53bdea !important;opacity:1 !important;font-weight:500 !important}.bluesnap-button_transparentButton__EREu\+ span{display:none}
.bt-slider_settings_drawer_container__2LiNF{width:320px;box-sizing:border-box;min-width:0;height:100%;z-index:10;position:absolute;right:0;background:var(--tasks-group-bg);padding:24px;box-shadow:0 22px 20px 0 rgba(0,55,80,.16)}
.app-view_pageContainer__jSa3j{height:100vh;direction:inherit;display:flex;background-color:var(--color-bg)}.app-view_titleContainer__S6KqE{background-color:var(--page-header-bg);border-bottom:1px solid var(--color-border);border-bottom-color:var(--color-border);padding:0 56px;box-sizing:border-box;display:flex;align-items:center;height:80px;justify-content:space-between;flex-shrink:0}@media(max-width: 785px){.app-view_titleContainer__S6KqE{padding:0 12px;height:56px;gap:8px;flex-wrap:nowrap;min-width:0;max-width:100%;overflow-x:hidden}}.app-view_pageTitle__a1ixq{margin:0;font-size:1.25rem;font-weight:500;color:inherit}@media(max-width: 785px){.app-view_pageTitle__a1ixq{font-size:1.125rem;font-weight:600;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.app-view_headerActions__CllDP{display:flex;align-items:center;gap:10px}@media(max-width: 785px){.app-view_headerActions__CllDP{gap:8px;flex-wrap:nowrap;flex-shrink:0;min-width:0}}.app-view_contentContainer__E-5Lo{flex:1;overflow:auto;min-height:0;min-width:0}.app-view_noHeaderContent__zt2k4{height:100vh}
/*
  Step 2: Centralized color variables
  - Common tokens
  - Component tokens (calendar-, dialog-, toggle- prefixes)

  The token DEFINITIONS used to live here, under `html` / `.dark`. They now
  live in ./color-scheme-tokens.css, which globals.css imports so that the
  palette reaches the extension's shadow roots too — an `html`-scoped custom
  property can never match inside a shadow tree, so every token in the overlay
  resolved to nothing. See the long note at the top of that file.

  This file keeps the rules that CONSUME those tokens (MUI DataGrid, form
  autofill, placeholders …). It is imported by src/website/website.tsx, which
  also imports globals.css, so the tokens are in scope by the time these run.
*/


/* Support Table – align MUI DataGrid with theme tokens */
.MuiDataGrid-root {
  background-color: var(--color-surface);
  color: var(--color-text);
}

.MuiDataGrid-columnHeaders,
.MuiDataGrid-toolbarContainer {
  background-color: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}

.MuiDataGrid-withBorderColor {
  border-color: var(--color-border);
}

/* Light mode row striping and hover */
html .MuiDataGrid-row:nth-of-type(odd) {
  background-color: var(--color-surface) !important;
}

html .MuiDataGrid-row:nth-of-type(even) {
  background-color: var(--color-surface-muted) !important;
}

html .MuiDataGrid-row:hover {
  background-color: var(--tasks-row-hover-bg) !important;
}

/* Dark mode overrides */
.dark .MuiDataGrid-root,
.dark .MuiDataGrid-columnHeaders,
.dark .MuiDataGrid-toolbarContainer {
  background-color: var(--color-surface);
  color: var(--color-text);
}

.dark .MuiDataGrid-row:nth-of-type(odd) {
  background-color: var(--color-surface) !important;
}

.dark .MuiDataGrid-row:nth-of-type(even) {
  background-color: var(--color-surface-muted) !important;
}

.dark .MuiDataGrid-row:hover {
  background-color: var(--tasks-row-hover-bg) !important;
}

.dark .MuiDataGrid-withBorderColor {
  border-color: var(--color-border);
}

/* DataGrid footer / pagination */
.MuiDataGrid-footerContainer {
  background-color: var(--color-surface);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

.MuiTablePagination-root {
  color: var(--color-text);
}

.MuiTablePagination-selectLabel,
.MuiTablePagination-displayedRows {
  color: var(--color-text-muted);
}

.MuiTablePagination-select {
  color: var(--color-text);
}

.MuiTablePagination-actions .MuiIconButton-root {
  color: var(--color-text);
}

.MuiTablePagination-actions .MuiIconButton-root:hover {
  background-color: var(--color-surface-muted);
}

.MuiTablePagination-actions .Mui-disabled {
  color: var(--color-text-muted) !important;
  opacity: 0.5;
}

/* Pagination select arrow and menu */
.MuiTablePagination-toolbar .MuiSelect-select {
  color: var(--color-text);
}

.MuiTablePagination-toolbar .MuiSelect-icon,
.MuiTablePagination-toolbar .MuiSelect-iconOutlined,
.MuiTablePagination-toolbar .MuiSvgIcon-root {
  color: var(--color-text);
  fill: var(--color-text);
}

/* Dropdown menu popup used by the rows-per-page select */
.MuiMenu-paper {
  background-color: var(--color-surface) !important;
  color: var(--color-text) !important;
  border: 1px solid var(--color-border) !important;
}

.MuiMenu-paper .MuiMenuItem-root {
  color: var(--color-text) !important;
}

.MuiMenu-paper .MuiMenuItem-root:hover {
  background-color: var(--color-surface-muted) !important;
}

.MuiMenu-paper .MuiMenuItem-root.Mui-selected {
  background-color: var(--color-surface-accent) !important;
}

/* Dark mode specific overrides */
.dark .MuiMenu-paper {
  background-color: var(--color-surface) !important;
  color: var(--color-text) !important;
  border-color: var(--color-border) !important;
}

.dark .MuiMenu-paper .MuiMenuItem-root {
  color: var(--color-text) !important;
}

.dark .MuiMenu-paper .MuiMenuItem-root:hover {
  background-color: var(--color-surface-muted) !important;
  color: var(--color-text) !important;
}

/* Global placeholder styling */
input::placeholder,
textarea::placeholder {
  color: var(--form-placeholder) !important;
  opacity: 1 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--form-placeholder) !important;
  opacity: 1 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--form-placeholder) !important;
  opacity: 1 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--form-placeholder) !important;
  opacity: 1 !important;
}

/* * {
  border-color: var(--color-border);
}
body {
  background: var(--color-bg);
  color: var(--color-text);
} */

/* Support Table – align MUI DataGrid with theme tokens */



/* Fix browser autofill styling to respect theme colors */

/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-internal-autofill-selected {
  appearance: none !important;
  background-image: none !important;
  background-color: var(--form-bg) !important;
  color: var(--form-text) !important;
  border: 1px solid var(--form-border) !important;
  border-radius: inherit !important;
  -webkit-box-shadow: 0 0 0 1000px var(--form-bg) inset !important;
  -webkit-text-fill-color: var(--form-text) !important;
  transition: background-color 5000s ease-in-out 0s !important;
  box-shadow: 0 0 0 1000px var(--form-bg) inset !important;
} */

/* Chrome paints its own (light) background over autofilled inputs, which ignores
   the theme tokens the access-form fields are styled with, so an autocompleted
   email showed up light on the dark login form. Repaint the fill with the same
   tokens. Scoped to our own inputs so WhatsApp Web's fields are untouched. */
.bt-access-input:-webkit-autofill,
.bt-access-input:-webkit-autofill:hover,
.bt-access-input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--color-text, #111827) !important;
  caret-color: var(--color-text, #111827);
  box-shadow: 0 0 0 1000px var(--color-surface, #ffffff) inset !important;
  /* Chrome animates back to its own background on interaction; stall it. */
  -webkit-transition: background-color 600000s 0s, color 600000s 0s !important;
  transition: background-color 600000s 0s, color 600000s 0s !important;
}

/* Keep the focus ring the input sets inline (an !important rule above would
   otherwise win over it). */
.bt-access-input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3), 0 0 0 1000px var(--color-surface, #ffffff) inset !important;
}

.bt-chatbot_wrapper__mEAIV{height:100vh;width:100vw;overflow:hidden;background-color:var(--bot-build-bg)}.bt-chatbot_toolbar_wrapper__8Tcmq{height:100%;position:relative;background:var(--bot-build-toolbar-bg);border-right:1px solid var(--bot-build-toolbar-border);box-sizing:border-box;width:250px !important;align-items:center;gap:15px;padding:15px;display:flex;flex-direction:column}.bt-chatbot_toolbar_sticky_header__JD92I{position:sticky;top:0;background:var(--bot-build-toolbar-bg);z-index:10;padding-bottom:15px;width:100%}.bt-chatbot_toolbar_scrollable_content__kVJYo{flex:1;overflow-y:auto;width:100%;min-height:0}.bt-chatbot_toolbar_scrollable_content__kVJYo::-webkit-scrollbar{width:6px}.bt-chatbot_toolbar_scrollable_content__kVJYo::-webkit-scrollbar-track{background:var(--bot-build-toolbar-bg);border-radius:3px}.bt-chatbot_toolbar_scrollable_content__kVJYo::-webkit-scrollbar-thumb{background:var(--bot-build-button-secondary);border-radius:3px}.bt-chatbot_toolbar_scrollable_content__kVJYo::-webkit-scrollbar-thumb:hover{background:var(--bot-build-button-secondary-hover)}.bt-chatbot_bot_header__mvXtB{box-sizing:border-box;height:100px;background-color:var(--bot-build-header-bg);border-bottom:1px solid var(--bot-build-header-border);display:flex;justify-content:space-between;padding:28px 30px 25px 35px}@media(max-width: 785px){.bt-chatbot_toolbar_wrapper__8Tcmq{width:170px !important;padding:8px;gap:8px}.bt-chatbot_bot_header__mvXtB{padding:16px 16px 14px 16px}.bt-chatbot_bt_popover_wrapper__F9YLK,.bt-chatbot_bt_popover_wrapper_for_settings__VK9uM{width:calc(100vw - 24px) !important;max-width:calc(100vw - 24px);min-height:0;max-height:90vh;padding-left:16px;padding-right:16px;overflow-y:auto}.bt-chatbot_main_node_wrapper__rOBsd{min-width:min(450px,90vw) !important}.bt-chatbot_secondary_node_wrapper__ZGylC{min-width:min(180px,90vw) !important}}.bt-chatbot_bot_name_container__mQ2zt{position:relative;display:flex;align-items:center}.bt-chatbot_editIcon__hReHh{opacity:0;transition:opacity .3s ease-in-out !important;color:var(--bot-build-button-ghost)}.bt-chatbot_bot_name_container__mQ2zt:hover .bt-chatbot_editIcon__hReHh{opacity:1;color:var(--bot-build-button-ghost-hover)}.bt-chatbot_flow_wrapper__Dxejn{height:calc(100% - 100px) !important;width:100% !important}.bt-chatbot_bt_popover_wrapper__F9YLK,.bt-chatbot_bt_popover_wrapper_for_settings__VK9uM{max-height:90vh;min-height:580px;padding:0px 30px 35px;border-radius:10px;background-color:var(--bot-build-modal-bg);color:var(--bot-build-modal-text);border:1px solid var(--bot-build-modal-border);position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);z-index:1000;box-shadow:0 4px 20px var(--bot-build-menu-shadow)}.bt-chatbot_bt_popover_wrapper_for_settings__VK9uM{width:850px;padding:30px 35px;color:var(--bot-build-modal-text)}.bt-chatbot_scrollContainer__Tpthi{overflow-x:hidden;overflow-y:auto;margin-top:10px}.bt-chatbot_scrollContainer__Tpthi::-webkit-scrollbar{width:4px;background-color:rgba(0,0,0,0);border-radius:10px;background-color:var(--bot-build-toolbar-bg)}.bt-chatbot_scrollContainer__Tpthi::-webkit-scrollbar-thumb{background-color:var(--bot-build-button-secondary);border-radius:10px}.bt-chatbot_custom_controls__JupOl{margin:0px 0px 35px 30px !important;display:flex;align-items:center;padding:9px 0px;box-shadow:var(--bot-build-menu-shadow) 10px 15px 25px !important;border-radius:5px;background:var(--bot-build-flow-controls-bg);border:1px solid var(--bot-build-flow-controls-border)}.bt-chatbot_custom_controls__JupOl button,.bt-chatbot_custom_controls__JupOl .react-flow__controls-button{width:46px;height:28px;border:none;background:var(--bot-build-flow-controls-bg);display:flex;padding:0px;color:var(--bot-build-flow-controls-text)}.bt-chatbot_custom_controls__JupOl button:not(:last-child),.bt-chatbot_custom_controls__JupOl .react-flow__controls-button:not(:last-child){border-right:1px solid var(--bot-build-flow-controls-border)}.bt-chatbot_custom_controls__JupOl button:hover,.bt-chatbot_custom_controls__JupOl .react-flow__controls-button:hover{background-color:var(--bot-build-flow-controls-hover)}.bt-chatbot_custom_controls__JupOl svg{width:auto !important;max-width:23px !important;max-height:23px !important;margin:auto;fill:var(--bot-build-flow-controls-text);stroke:var(--bot-build-flow-controls-text)}.dark .bt-chatbot_custom_controls__JupOl{background:var(--bot-build-flow-controls-bg);border:1px solid var(--bot-build-flow-controls-border)}.dark .bt-chatbot_custom_controls__JupOl button,.dark .bt-chatbot_custom_controls__JupOl .react-flow__controls-button{background:var(--bot-build-flow-controls-bg) !important;color:var(--bot-build-flow-controls-text) !important;border-right-color:var(--bot-build-flow-controls-border)}.dark .bt-chatbot_custom_controls__JupOl button:hover,.dark .bt-chatbot_custom_controls__JupOl .react-flow__controls-button:hover{background-color:var(--bot-build-flow-controls-hover) !important}.dark .bt-chatbot_custom_controls__JupOl button svg,.dark .bt-chatbot_custom_controls__JupOl .react-flow__controls-button svg{fill:var(--bot-build-flow-controls-text) !important;stroke:var(--bot-build-flow-controls-text) !important}.dark .bt-chatbot_custom_controls__JupOl svg{fill:var(--bot-build-flow-controls-text) !important;stroke:var(--bot-build-flow-controls-text) !important}.bt-chatbot_toolbar_node_button_container__aJOm8{border-radius:5px;position:relative;overflow:hidden;padding:10px;box-sizing:border-box;margin-bottom:6px;color:#fff;transition:all .3s ease 0s;height:90px !important;width:100%}.bt-chatbot_toolbar_node_button_container__aJOm8:hover{filter:brightness(1.05)}.bt-chatbot_node_menu_item__xR0j2{border-radius:6px;padding:0 8px;margin:0 -8px;cursor:pointer;transition:background-color .12s ease}.bt-chatbot_node_menu_item__xR0j2:hover{background-color:var(--bot-build-menu-item-hover-bg, rgba(15, 23, 42, 0.06))}.bt-chatbot_toolbar_node_button_title__ZGWVn{font-weight:600;font-size:15px;line-height:22px;color:#fff}.bt-chatbot_toolbar_node_button_secondary_title__e1VOY{margin-top:5px;font-weight:500;font-size:12px;line-height:18px;width:150px;color:hsla(0,0%,100%,.9)}.bt-chatbot_main_node_wrapper__rOBsd{min-width:450px !important;border-radius:5px;box-shadow:var(--bot-build-menu-shadow) 30px 60px 65px;font-weight:500;font-size:12px;line-height:18px;cursor:move;transition:box-shadow .3s ease 0s;background-color:var(--bot-build-node-button-bg);border:1px solid var(--bot-build-node-button-border)}.bt-chatbot_secondary_node_wrapper__ZGylC{min-width:180px !important;border-radius:5px;box-shadow:var(--bot-build-menu-shadow) 30px 60px 65px;font-weight:500;font-size:12px;line-height:18px;cursor:move;transition:box-shadow .3s ease 0s;background-color:var(--bot-build-node-button-bg);border:1px solid var(--bot-build-node-button-border)}.bt-chatbot_main_node_wrapper__rOBsd:hover,.bt-chatbot_secondary_node_wrapper__ZGylC:hover{box-shadow:var(--bot-build-menu-shadow) 0px 0px 5px 1px}.bt-chatbot_main_node_header__chbuj{align-items:center;justify-content:space-between;padding:7px 10px;border-radius:5px 5px 0px 0px;color:var(--bot-build-node-button-text)}.bt-chatbot_secondary_node_header__1LfTN{align-items:center;justify-content:space-between;padding:10px;border-radius:5px;color:var(--bot-build-node-button-secondary-text)}.bt-chatbot_mui_number_field__AGW8S input::-webkit-inner-spin-button,.bt-chatbot_mui_number_field__AGW8S input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}@keyframes bt-chatbot_bot_loader__fxo8w{0%,100%{-webkit-transform:translateY(0);transform:translateY(0)}50%{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}.bt-chatbot_bot_loader__fxo8w>div:nth-child(1){-webkit-animation:bt-chatbot_bot_loader__fxo8w 1.2s -0.42s infinite ease-in-out;animation:bt-chatbot_bot_loader__fxo8w 1.2s -0.42s infinite ease-in-out}.bt-chatbot_bot_loader__fxo8w>div:nth-child(2){-webkit-animation:bt-chatbot_bot_loader__fxo8w 1.2s -0.28s infinite ease-in-out;animation:bt-chatbot_bot_loader__fxo8w 1.2s -0.28s infinite ease-in-out}.bt-chatbot_bot_loader__fxo8w>div:nth-child(3){-webkit-animation:bt-chatbot_bot_loader__fxo8w 1.2s -0.14s infinite ease-in-out;animation:bt-chatbot_bot_loader__fxo8w 1.2s -0.14s infinite ease-in-out}.bt-chatbot_bot_loader__fxo8w>div:nth-child(4){-webkit-animation:bt-chatbot_bot_loader__fxo8w 1.2s 0s infinite ease-in-out;animation:bt-chatbot_bot_loader__fxo8w 1.2s 0s infinite ease-in-out}.bt-chatbot_bot_loader__fxo8w>div{background-color:var(--bot-build-button-primary);width:4px;height:4px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block}.bt-chatbot_drag_preview__PW8j-{width:200px;height:40px;background-color:var(--bot-build-node-button-bg);border:1px solid var(--bot-build-node-button-border);border-radius:4px;display:flex;align-items:center;justify-content:center;font-weight:500;box-shadow:0 2px 10px var(--bot-build-menu-shadow);font-size:14px;color:var(--bot-build-node-button-text);padding:10px;max-width:250px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.condition-node_condition_node_wrapper__AQoOb{min-height:100px;padding:4px;border-radius:5px}.condition-node_add_condition_popover_header__d7e6Q{display:flex;justify-content:space-between;align-items:center;padding:20px;font-weight:600;font-size:15px;line-height:22px;margin:0px -20px}.condition-node_add_condition_popover_body__u-\+xJ{border-top:1px solid #e3e3e3;padding-top:20px}.condition-node_condition_popover_body_header__yJw9B{font-weight:600;font-size:13px;margin-bottom:12px}.condition-node_condition_popover_box__S02KQ{display:grid;gap:20px;margin-bottom:10px;background:#f5f6fa;border-radius:5px;padding:10px}.condition-node_y_handle__Ar2tn{background-color:green !important;position:absolute;top:35% !important;z-index:3}.condition-node_n_handle__18Zjb{background-color:red !important;position:absolute;margin-top:5% !important;z-index:3}.condition-node_condition_node_wrapper__AQoOb:hover~.condition-node_y_handle__Ar2tn,.condition-node_y_handle__Ar2tn:hover{border:3px solid green !important;background-color:#fff !important}.condition-node_condition_node_wrapper__AQoOb:hover~.condition-node_n_handle__18Zjb,.condition-node_n_handle__18Zjb:hover{border:3px solid red !important;background-color:#fff !important}
.google-sheets-node_y_handle__lDS4f{background-color:green !important;position:absolute;top:35% !important;right:-3px !important;z-index:3}.google-sheets-node_n_handle__y5osp{background-color:red !important;position:absolute;margin-top:5% !important;right:-3px !important;z-index:3}.google-sheets-node_condition_node_wrapper__dh5l-:hover~.google-sheets-node_y_handle__lDS4f,.google-sheets-node_y_handle__lDS4f:hover{border:3px solid green !important;background-color:#fff !important}.google-sheets-node_condition_node_wrapper__dh5l-:hover~.google-sheets-node_n_handle__y5osp,.google-sheets-node_n_handle__y5osp:hover{border:3px solid red !important;background-color:#fff !important}.google-sheets-node_add_google_sheets_dialog_header__0JzgR{display:flex;justify-content:space-between;align-items:center;padding:20px 0px;font-weight:600;font-size:15px;line-height:22px;margin-bottom:20px;border-bottom:1px solid #e3e3e3}.google-sheets-node_divider__vODzm{margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid #e3e3e3}.google-sheets-node_title__gm54M{display:flex;align-items:center;font-weight:600;font-size:13px;line-height:19px;color:var(--color-text);margin-bottom:12px;flex-wrap:wrap;gap:5px}
.question-node_question__tES1A{padding:15px 10px 0px;color:#333;word-break:break-word}.question-node_answers__pOAH5{margin:10px;display:flex;flex-direction:column;text-align:left}.question-node_answer__L3ZjD{position:relative;display:flex;align-items:center;justify-content:center;margin-top:5px;padding:5px 25px;min-height:40px;text-align:center;font-weight:500;font-size:12px;line-height:18px;color:#666;flex-direction:column;word-break:break-word;background-color:#f5f6fa;border-radius:5px}.question-node_question_node_wrapper__73vbP:hover .question-node_question_source_handle__SIL1\+,.question-node_question_source_handle__SIL1\+:hover{border:3px solid #f93 !important;background-color:#fff !important}.question-node_question_node_wrapper__73vbP:hover .question-node_status_source_handle__RAKl1,.question-node_status_source_handle__RAKl1:hover{border:3px solid #bb86fc !important;background-color:#fff !important}.question-node_add_question_message_editor_wrapper__22Q3l{padding-top:26px}.question-node_add_question_title__UMkNM{display:flex;align-items:center;font-weight:600;font-size:13px;line-height:19px;color:var(--color-text, rgb(51, 51, 51));margin-bottom:12px;flex-wrap:wrap;gap:5px}.question-node_divider__Q8v6p{width:500px;margin-top:20px;padding-bottom:20px;border-top:1px solid var(--color-border, rgb(227, 227, 227))}
.bot-checkbox_free_text_checkbox__NaGgH{margin:16px 0}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_option_container__Dey1t{background-color:#f8f9fa;border-radius:10px;padding:12px 16px;transition:all .2s ease}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_option_container__Dey1t:hover{background-color:#f2f3f5;box-shadow:0 2px 8px rgba(0,0,0,.05)}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_checkbox_wrapper__UySka{position:relative;display:flex;align-items:center}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_checkbox_input__S\+p37{position:absolute;opacity:0;height:0;width:0}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_checkbox_input__S\+p37:checked+.bot-checkbox_checkbox_label__dhQcm .bot-checkbox_checkbox_custom__Kz\+fP{background-color:#0070f3;border-color:#0070f3}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_checkbox_input__S\+p37:checked+.bot-checkbox_checkbox_label__dhQcm .bot-checkbox_checkbox_custom__Kz\+fP:after{opacity:1;transform:rotate(45deg) scale(1)}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_checkbox_input__S\+p37:focus+.bot-checkbox_checkbox_label__dhQcm .bot-checkbox_checkbox_custom__Kz\+fP{box-shadow:0 0 0 3px rgba(0,112,243,.2)}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_checkbox_label__dhQcm{display:flex;align-items:center;cursor:pointer;user-select:none;width:100%}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_checkbox_custom__Kz\+fP{position:relative;width:20px;height:20px;border:2px solid #cbd5e0;border-radius:4px;margin-right:12px;transition:all .2s ease;flex-shrink:0}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_checkbox_custom__Kz\+fP:after{content:"";position:absolute;top:1px;left:6px;width:5px;height:10px;border:solid #fff;border-width:0 2px 2px 0;opacity:0;transform:rotate(45deg) scale(0.5);transition:all .2s ease}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_checkbox_text__RvMZ7{display:flex;flex-direction:column}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_feature_title__XNoXV{font-weight:600;font-size:14px;color:#2d3748}.bot-checkbox_free_text_checkbox__NaGgH .bot-checkbox_feature_description__vDqVn{font-size:12px;color:#718096;margin-top:2px}
.webhook-node_source_handle__nGaVR{background-color:#ffb906 !important;z-index:3}.webhook-node_send_message_node_wrapper__ehRdF:hover~.webhook-node_source_handle__nGaVR,.webhook-node_source_handle__nGaVR:hover{border:3px solid #ffb906 !important;background-color:#fff !important}.webhook-node_add_webhook_dialog_header__g3Iq5{display:flex;justify-content:space-between;align-items:center;padding:20px 0px;font-weight:600;font-size:15px;line-height:22px;margin-bottom:20px;border-bottom:1px solid #e3e3e3}.webhook-node_divider__bewM0{width:500px;margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid #e3e3e3}.webhook-node_title__wnZkx{display:flex;align-items:center;font-weight:600;font-size:13px;line-height:19px;color:var(--color-text);margin-bottom:12px;flex-wrap:wrap;gap:5px}.webhook-node_secondary_title__1gZYg{margin-top:10px;color:#666;font-weight:normal;font-size:12px;line-height:18px}.webhook-node_method_select__vBcU\+{z-index:2;cursor:pointer;display:flex;align-items:center;justify-content:space-between;line-height:28px;background-color:#fff;border-radius:5px;height:30px;padding-left:5px;color:var(--bulk-text-secondary);font-size:14px}.webhook-node_response_routes__LVaCM{flex-direction:column;text-align:left}.webhook-node_response_route__rS5w7{position:relative;display:flex;align-items:center;justify-content:center;margin-top:5px;padding:5px 25px;min-height:40px;text-align:center;font-weight:500;font-size:12px;line-height:18px;color:#666;flex-direction:column;word-break:break-word;background-color:#f5f6fa;border-radius:5px}
.trigger-node_trigger_container__\+mxFG{position:relative;border-radius:12px;min-width:220px;min-height:180px;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;background-color:var(--color-surface, #ffffff);padding:12px;transition:all .2s ease;box-shadow:0 2px 4px rgba(0,0,0,.05);color:var(--color-text, #111827)}.trigger-node_trigger_title__4b52d{font-weight:600;font-size:15px;color:var(--color-text);margin:0;padding:0;text-align:left}.trigger-node_trigger_description__YOwfc{font-size:12px;color:var(--color-text-muted, var(--bulk-text-secondary));opacity:.8;line-height:1.2;margin-bottom:8px;width:100%;text-align:center}.trigger-node_trigger_source_handle__ycx\+L{background-color:#b6d7a8;border:2px solid var(--color-surface, #ffffff);border-radius:50%;z-index:3;transition:all .2s ease}.trigger-node_trigger_source_handle__ycx\+L:hover{border-color:#96c484 !important;background-color:var(--color-surface, #ffffff) !important}.trigger-node_trigger_container__\+mxFG:hover .trigger-node_trigger_source_handle__ycx\+L{border:3px solid #b6d7a8 !important;background-color:var(--color-surface, #ffffff) !important}.trigger-node_settings_button__gQ6kx:hover{color:var(--bulk-accent) !important;background-color:rgba(25,118,210,.08)}.trigger-node_add_trigger_dialog_header__GDxDr{display:flex;justify-content:space-between;align-items:center;padding-top:25px;padding-bottom:20px;font-weight:600;font-size:15px;line-height:22px;margin-bottom:20px;border-bottom:1px solid var(--color-border, rgb(227, 227, 227));color:var(--color-text, #111827)}.trigger-node_add_trigger_dialog_body__ApVAy{padding:0 20px}.trigger-node_section_title__GTCZ-{font-weight:600;font-size:13px;line-height:19px;color:var(--color-text);margin-bottom:12px}.trigger-node_divider__-1Bie{margin:20px 0;border-bottom:1px solid var(--color-border, rgb(227, 227, 227))}
.llm-dialog_llm_dialog_header__0ADtJ{padding:20px;background-color:#f5f5f5;border-bottom:1px solid var(--bulk-border);justify-content:space-between;align-items:center;font-weight:600;font-size:16px;color:#0a3750}.llm-dialog_llm_dialog_wrapper__OrB2Z{height:100%;display:flex;flex-direction:column}.llm-dialog_llm_dialog_content__I0cpY{padding-top:26px;display:flex;flex-direction:column;flex:1;height:100%}.llm-dialog_llm_dialog_title__mYc2C{font-size:14px;font-weight:500;color:#0a3750;margin-bottom:10px}.llm-dialog_divider__9xpGE{height:1px;background-color:var(--bulk-border);margin:20px 0;width:100%}.llm-dialog_settings_section__DK9k4{display:flex;flex-direction:column}.llm-dialog_checkbox_container__zwTmK{display:flex;align-items:center}.llm-dialog_checkbox__LIMsw{width:18px;height:18px;cursor:pointer}.llm-dialog_checkbox_label__\+-ltW{font-size:14px;color:#0a3750;cursor:pointer}.llm-dialog_variable_section__wRNAm{margin-top:10px;display:flex;flex-direction:column;gap:8px}.llm-dialog_variable_label__QB3CG{font-size:14px;font-weight:500;color:#0a3750}.llm-dialog_variable_hint__TMOUk{font-size:12px;color:#676767;margin-top:4px}.llm-dialog_button_container__7MrhM{margin-top:auto;padding-top:30px}.llm-dialog_llm_footer__S3O4Z{padding:12px 16px;border-top:1px solid #e8eaf2;border-radius:0 0 8px 8px;box-shadow:0 -1px 2px rgba(0,0,0,.03);transition:background-color .3s ease}.llm-dialog_variable_info__YMEyo{display:flex;align-items:center;font-size:14px;color:inherit;font-weight:500;letter-spacing:.2px}.llm-dialog_variable_info__YMEyo .llm-dialog_variable_icon__xT7G5{font-size:18px;margin-right:8px;opacity:.9}.llm-dialog_variable_info__YMEyo code.llm-dialog_variable_code__tzKBV{padding:4px 10px;border-radius:4px;font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,monospace;font-weight:600;margin-left:8px;border-width:1px;border-style:solid;cursor:pointer;transition:all .2s ease}.llm-dialog_variable_info__YMEyo code.llm-dialog_variable_code__tzKBV:hover{transform:translateY(-1px);box-shadow:0 2px 5px var(--modal-shadow)}.llm-dialog_set_variable_prompt__Ibxh4{display:flex;align-items:center;justify-content:center;padding:10px 16px;border-radius:6px;background:linear-gradient(135deg, #f8f9fa, #e9ecef);border:1px solid rgba(0,0,0,.08);font-size:14px;font-weight:500;cursor:pointer;transition:all .25s cubic-bezier(0.2, 0, 0, 1);box-shadow:0 2px 4px rgba(0,0,0,.04)}.llm-dialog_set_variable_prompt__Ibxh4 .llm-dialog_settings_icon__53r3-{font-size:18px;margin-right:8px}.llm-dialog_set_variable_prompt__Ibxh4:hover{background:linear-gradient(135deg, #f1f3f5, #e9ecef);transform:translateY(-2px);box-shadow:0 4px 8px rgba(0,0,0,.08);border-color:var(--modal-shadow)}.llm-dialog_set_variable_prompt__Ibxh4:active{transform:translateY(0);box-shadow:0 1px 2px var(--modal-shadow)}
.agent-node_source_handle__5orRc{background-color:#4a90e2;z-index:3;right:-2px !important}.agent-node_source_handle__5orRc:hover{background-color:#3570b8}.agent-node_agent_source_handle__zq81y{right:-8px !important;width:16px !important;height:16px !important;border-radius:50% !important;background-color:#4a90e2 !important;border:none !important}.agent-node_agentNode__D7JoH{z-index:1;min-width:300px}.agent-node_toolNodeContainer__4TMTL{position:relative}.agent-node_toolNode__YoqDX{position:absolute;width:50px;height:50px;border-radius:50%;display:flex;justify-content:center;align-items:center;box-shadow:0px 2px 4px rgba(0,0,0,.25);z-index:2;cursor:pointer;transition:transform .2s ease-in-out;border:2px solid #fff}.agent-node_toolNode__YoqDX:hover{transform:scale(1.1)}.agent-node_toolNodeText__0xJiv{color:#fff;font-weight:bold;font-size:10px;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:40px}
.send-message-node_send_message_node_wrapper__p5nyO{width:200px;min-height:100px;padding:4px;border-radius:5px}.send-message-node_send_message_source_handle__PxPbD{background-color:#e95b69 !important;z-index:3}.send-message-node_send_message_source_handle__PxPbD:hover{border:3px solid #e95b69 !important;background-color:#fff !important}.send-message-node_message_contact_source_handle__39Ijb{background-color:teal !important;z-index:3}.send-message-node_message_contact_source_handle__39Ijb:hover{border:3px solid teal !important;background-color:#fff !important}.send-message-node_llm_source_handle__bu23J{background-color:#e0d6ff !important;z-index:3}.send-message-node_llm_source_handle__bu23J:hover{border:3px solid #e0d6ff !important;background-color:#fff !important}

/*# sourceMappingURL=main-cf4a66bf.3f6adf97.css.map*/