/* index.module.css for N8nChat styling */

  /* Font family, box-sizing, and line-height reset for embedded widget */
  .n8n-chat-n8nChatLauncher-jBp8s,
  .n8n-chat-n8nChatLauncher-jBp8s *,
  .n8n-chat-n8nChatOverlay-PzhE9,
  .n8n-chat-n8nChatOverlay-PzhE9 *,
  .n8n-chat-n8nChatWindow-uR2Cs,
  .n8n-chat-n8nChatWindow-uR2Cs *,
  .n8n-chat-tabContainer-ftcAt,
  .n8n-chat-tabContainer-ftcAt *,
  .n8n-chat-tab-_B3Wc,
  .n8n-chat-tab-_B3Wc *,
  .n8n-chat-tabActive-XGU7_,
  .n8n-chat-tabActive-XGU7_ *,
  .n8n-chat-closeIcon-kFV9p,
  .n8n-chat-closeIcon-kFV9p * {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif !important;
    box-sizing: border-box !important;
    line-height: 1.6 !important;
  }

  @keyframes n8n-chat-fadeIn-x1W3B {
    from {
      opacity: 0;
      transform: scale(0.97);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  code, pre {
    font-family: 'Fira Code', 'Courier New', monospace !important;
  }

  .n8n-chat-n8nChatLauncher-jBp8s {
    position: fixed;
    bottom: 24px;
    right: 24px;
    color: #fff;
    padding: 10px 16px;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    border: none;
    background-color: #3a3a3a;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    z-index: 10;
    font-size: 16px;
    cursor: pointer;
  }

  .n8n-chat-n8nChatLauncher-jBp8s:hover {
    transform: scale(1.05);
  }
  
  .n8n-chat-n8nChatOverlay-PzhE9 {
    position: fixed;
    inset: 0;
    background-color:rgba(13, 13, 13, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    transition: all .5s;
  }

  @keyframes n8n-chat-blink-p6yV1 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  .n8n-chat-n8nChatWindow-uR2Cs {
    background-color: #191919;
    color: #fff;
    width: 60vw;
    max-width: 900px;
    animation: n8n-chat-fadeIn-x1W3B 0.25s ease-out;
    max-height: 85vh;
    min-height: 20vh;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
  }

  .n8n-chat-tabContainer-ftcAt {
    position: absolute;
    display: flex;
    top: 16px;
    right: 10px;
    border: 1px solid #313131;
    border-radius: 4px;
    z-index: 10;
  }

  .n8n-chat-tab-_B3Wc, .n8n-chat-tabActive-XGU7_ {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: #aaa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
  }
  
  .n8n-chat-tabActive-XGU7_ {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }

  .n8n-chat-tab-_B3Wc:hover {
    color: #fff;
  }

  .n8n-chat-closeIcon-kFV9p {
    position: absolute;
    top: 10px;
    right: 8px;
    cursor: pointer;
    color: #aaa;
    transition: all 0.3s;
    display: none;
  }
  
  @media (max-width: 600px) {
    .n8n-chat-n8nChatOverlay-PzhE9 {
      justify-content: center; 
      align-items: flex-end;
      padding-top: 0;

      overflow: hidden;
      -webkit-overflow-scrolling: touch;
    }
    .n8n-chat-n8nChatWindow-uR2Cs {
      width: 100%;
      height: 100dvh;
      max-height: none;
      padding: 8px;
      padding-top: 16px;
      min-height: 100%;
      padding-bottom: 6px;
    }

    .n8n-chat-closeIcon-kFV9p {
      display: block;
    }

    .n8n-chat-tabContainer-ftcAt {
      top: 8px;
      right: 48px;
    }
  }
  .n8n-chat-tooltipWrapper-iBNgm {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .n8n-chat-tooltipIcon-szpkX {
    width: 16px;
    height: 16px;
    color: #b4b4b4;
    cursor: pointer;
  }
  
  .n8n-chat-tooltipIcon-szpkX:hover + .n8n-chat-tooltip-d4b_1 {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .n8n-chat-tooltip-d4b_1 {
    position: absolute;
    bottom: -36px;
    left: 0;
    background:rgb(45, 44, 44);
    color: #fff;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 10;
  }

  .n8n-chat-refContainer-sHnv8 {
    padding: 12px;
    padding-left: 58px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .n8n-chat-refBody-Egnci {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    text-decoration: none;
    color: #ccc;
    cursor: pointer;
    transition: all .5s ease;
  }

  .n8n-chat-refBody-Egnci:hover {
    border-color: #00daff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
  }

  .n8n-chat-n8nChatBody-GgAod {
    flex: 1;
    overflow-y: auto;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #444 transparent;
  }

  .n8n-chat-n8nChatBody-GgAod p {
    margin: 0 !important;
  }
  
  .n8n-chat-n8nChatBody-GgAod::-webkit-scrollbar {
    width: 8px;
  }
  
  .n8n-chat-n8nChatBody-GgAod::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .n8n-chat-n8nChatBody-GgAod::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
  }

  .n8n-chat-n8nChatSendIcon-tJrbS {
    position: absolute;
    right: 12px;
    top: 57%;
    width: 30px;
    transform: translateY(-50%) rotate(-30deg) scale(1.1);
    height: 30px;
    cursor: pointer;
    transition: filter 0.2s ease;
    opacity: 0.2;
    padding: 8px;
    border-radius: 8px;
    transition: color 0.5s ease, background-color 0.5s ease, opacity 0.5s ease;
  }

  .n8n-chat-n8nChatSendIcon-tJrbS:hover {
    background-color: rgba(255, 255, 255, 0.1);
    /* opacity: 1; */
  }

  .n8n-chat-n8nChatSendIconActive-PKy_3 {
    color: #00daff;
    opacity:1;
  }
  
  .n8n-chat-n8nChatInputArea-wkEbT {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
  }

  .n8n-chat-n8nChatInputWrapper-wQ5R2 {
    position: relative;
    flex: 1;
  }
  
  .n8n-chat-n8nChatInput-RP2KK {
    width: 100%;
    padding: 12px 44px 12px 14px; /* space for icon on right */
    border-radius: 8px;
    margin-top: 12px;
    height: 56px;
    border: 1px solid #333;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 17px;
    box-sizing: border-box !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif !important;
    line-height: 1.4 !important;
  }

  .n8n-chat-n8nChatInput-RP2KK:focus {
    outline: none;
    border-color: #00daff;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .n8n-chat-n8nClearButton-NvGJa {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all .5s ease;
    color: rgba(255, 255, 255, 0.5);
  }

  .n8n-chat-n8nClearButton-NvGJa:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .n8n-chat-markdown-nPUXi {
    display: block;
    width: 100%;
    word-break: break-word;
    overflow: hidden;
    line-height: 1.6 !important;
  }
  
  .n8n-chat-markdown-nPUXi p {
    line-height: 1.6 !important;
  }
  
  .n8n-chat-markdown-nPUXi a {
    color: #00daff;
    text-decoration: underline;
  }

  /* Table styles */
  .n8n-chat-markdownTable-V6FAl {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .n8n-chat-markdownThead-gxqtm {
    background: rgba(0, 218, 255, 0.1);
  }

  .n8n-chat-markdownTh-XBwBV {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #00daff;
    border-bottom: 2px solid rgba(0, 218, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .n8n-chat-markdownTh-XBwBV:last-child {
    border-right: none;
  }

  .n8n-chat-markdownTd-c06uO {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    vertical-align: top;
  }

  .n8n-chat-markdownTd-c06uO:last-child {
    border-right: none;
  }

  .n8n-chat-markdownTr-yz4zX:hover {
    background: rgba(255, 255, 255, 0.02);
  }

  .n8n-chat-markdownTr-yz4zX:last-child .n8n-chat-markdownTd-c06uO {
    border-bottom: none;
  }  

  .n8n-chat-markdown-nPUXi pre {
    background-color: transparent;
    padding: 2px;
  }
  
  pre > div > div:last-child {
    margin: 0 !important;
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }

  .n8n-chat-inlineCode-oJ5oS {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.95em;
  }

  .n8n-chat-codeBlockWrapper-YJTh7 > div:last-child {
    margin-top: 0 !important; 
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  
  .n8n-chat-markdown-nPUXi h3 {
    font-size: 18px;
    color: #00daff;
  }
  
  .n8n-chat-markdown-nPUXi ul,
  .n8n-chat-markdown-nPUXi ol {
    margin: 10px 0;
    padding-left: 18px;
  }

  .n8n-chat-copyButton-DuKTI {
    background: none;
    color: #b4b4b4;
    border: none;
    cursor: pointer;
    transition: all .5s;
  }

  .n8n-chat-copyButton-DuKTI:hover {
    color: #00daff;
  }

  /* Highlight animation on text */
  .n8n-chat-thinkingHighlight-wP_t6 {
    background: linear-gradient(90deg, #00daff 0%, #7e5bef 50%, #00daff 100%);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: n8n-chat-gradientSweep-YaSRe 2s ease-in-out infinite;
  }
  
  @keyframes n8n-chat-gradientSweep-YaSRe {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }
  
  /* Bouncing dots */
  .n8n-chat-bounceDots-DC0jv {
    display: inline-flex;
    margin-left: 6px;
  }
  
  .n8n-chat-bounceDots-DC0jv span {
    animation: n8n-chat-bounce-VqThb 1.4s infinite;
    display: inline-block;
    font-weight: bold;
    color: #7e5bef;
    font-size: 18px;
    margin-left: 2px;
  }

  .n8n-chat-examplesContainer-zife6 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
    background: #1a1a1a; /* match your chat background */
    border-radius: 8px;
    margin-bottom: 24px;
  }
  
  .n8n-chat-examplesHeader-kSnVr {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
  }
  
  .n8n-chat-examplesList-b5agY {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .n8n-chat-exampleButton-AwUyL {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;

    white-space: nowrap;
    flex: 0 0 auto;
  }
  .n8n-chat-exampleButton-AwUyL:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  /* Pulsing glow on the very first button */
  .n8n-chat-exampleButton-AwUyL:first-child {
    border-color: rgba(0, 218, 255, 0.7);
    animation: n8n-chat-pulseGlow-ns2YP 2.5s ease-in-out infinite;
  }
  
  @keyframes n8n-chat-pulseGlow-ns2YP {
    0%, 100% {
      box-shadow:
        0 0 4px rgba(0,218,255,0.6),
        0 0 8px rgba(0,218,255,0.4),
        inset 0 0 4px rgba(0,218,255,0.5);
    }
    50% {
      box-shadow:
        0 0 12px rgba(0,218,255,0.8),
        0 0 16px rgba(0,218,255,0.6),
        inset 0 0 6px rgba(0,218,255,0.7);
    }
  }  
  
  .n8n-chat-bounceDots-DC0jv span:nth-child(1) {
    animation-delay: 0s;
  }
  .n8n-chat-bounceDots-DC0jv span:nth-child(2) {
    animation-delay: 0.2s;
  }
  .n8n-chat-bounceDots-DC0jv span:nth-child(3) {
    animation-delay: 0.4s;
  }

  .n8n-chat-messageContainer-J0HOP {
    display: flex;
    align-items: start;
    gap: 16px;
    position: relative;
    padding: 32px 12px;
  }

  .n8n-chat-roleContainer-Mb5d1 {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .n8n-chat-roleContainer-Mb5d1 span {
    display: none;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 4px 16px;
  }

  .n8n-chat-loadingContainer-fbU4H {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 36px 12px;
  }

  @media (max-width: 600px) {
    .n8n-chat-n8nChatInputArea-wkEbT {
      margin-bottom: 6px;
    }

    .n8n-chat-n8nChatBody-GgAod {
      -webkit-overflow-scrolling: touch;
    }

    .n8n-chat-tooltipWrapper-iBNgm {
      margin-bottom: 6px;
      margin-top: -6px;
    }
    
    .n8n-chat-messageContainer-J0HOP {
      flex-direction: column;
      align-items: flex-start;
      padding: 24px 6px;
    }

    .n8n-chat-loadingContainer-fbU4H {
      padding: 24px 6px;
    }

    .n8n-chat-roleContainer-Mb5d1 span {
      display: block;
    }

    .n8n-chat-refContainer-sHnv8 {
      padding-left: 8px;
    }

    .n8n-chat-markdown-nPUXi ul,
    .n8n-chat-markdown-nPUXi ol {
      padding-left: 23px;
    }
  }
  
  @keyframes n8n-chat-bounce-VqThb {
    0%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-4px);
    }
  }
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/*!
  Theme: GitHub Dark
  Description: Dark theme as seen on github.com
  Author: github.com
  Maintainer: @Hirse
  Updated: 2021-05-15

  Outdated base version: https://github.com/primer/github-syntax-dark
  Current colors taken from GitHub's CSS
*/
.hljs {
  color: #c9d1d9;
  background: #0d1117
}
.hljs-doctag,
.hljs-keyword,
.hljs-meta .hljs-keyword,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-variable.language_ {
  /* prettylights-syntax-keyword */
  color: #ff7b72
}
.hljs-title,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-title.function_ {
  /* prettylights-syntax-entity */
  color: #d2a8ff
}
.hljs-attr,
.hljs-attribute,
.hljs-literal,
.hljs-meta,
.hljs-number,
.hljs-operator,
.hljs-variable,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-id {
  /* prettylights-syntax-constant */
  color: #79c0ff
}
.hljs-regexp,
.hljs-string,
.hljs-meta .hljs-string {
  /* prettylights-syntax-string */
  color: #a5d6ff
}
.hljs-built_in,
.hljs-symbol {
  /* prettylights-syntax-variable */
  color: #ffa657
}
.hljs-comment,
.hljs-code,
.hljs-formula {
  /* prettylights-syntax-comment */
  color: #8b949e
}
.hljs-name,
.hljs-quote,
.hljs-selector-tag,
.hljs-selector-pseudo {
  /* prettylights-syntax-entity-tag */
  color: #7ee787
}
.hljs-subst {
  /* prettylights-syntax-storage-modifier-import */
  color: #c9d1d9
}
.hljs-section {
  /* prettylights-syntax-markup-heading */
  color: #1f6feb;
  font-weight: bold
}
.hljs-bullet {
  /* prettylights-syntax-markup-list */
  color: #f2cc60
}
.hljs-emphasis {
  /* prettylights-syntax-markup-italic */
  color: #c9d1d9;
  font-style: italic
}
.hljs-strong {
  /* prettylights-syntax-markup-bold */
  color: #c9d1d9;
  font-weight: bold
}
.hljs-addition {
  /* prettylights-syntax-markup-inserted */
  color: #aff5b4;
  background-color: #033a16
}
.hljs-deletion {
  /* prettylights-syntax-markup-deleted */
  color: #ffdcd7;
  background-color: #67060c
}
.hljs-char.escape_,
.hljs-link,
.hljs-params,
.hljs-property,
.hljs-punctuation,
.hljs-tag {
  /* purposely ignored */
  
}
.n8n-chat-wrapper-Jzwh2 {
    position: relative;
    background: #2A2A2A;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
    font-size: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .n8n-chat-header-qo1X7 {
    background:rgb(33, 33, 33);
    color: #7dd3fc;
    display: flex;
    justify-content: space-between;
    padding: 4px 12px;
    font-size: 12px;
    font-family: monospace;
  }
  
  .n8n-chat-copy-YLOAe {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
  }
  
  .n8n-chat-copy-YLOAe:hover {
    color: #00daff;
  }
  
  .n8n-chat-code-gM_pM {
    padding: 12px;
    overflow-x: auto;
    white-space: pre;
  }
  
  .n8n-chat-searchBody-XFviw {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: auto;
    height: 100%;
  }
  
  .n8n-chat-searchInput-Rvttv {
    width: 70%;
    padding: 10px 8px;
    background: transparent;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    color: #fff;
  }

  .n8n-chat-searchInput-Rvttv:focus {
    outline: none;
    border:none;
  }

  .n8n-chat-searchInputContainer-mCM6u {
    display: flex;
    align-items: center;
  }
  
  .n8n-chat-results-WYtVA {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    padding-right: 4px;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: #444 transparent;
  }

  .n8n-chat-resultSnippet-vi0Ka p {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
  }

  .n8n-chat-resultSnippet-vi0Ka h1 {
    margin-top: 0;
  }

  .n8n-chat-askButton-KjW1p {
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s;
    border: 1px solid transparent;
    border-radius: 6px;
  }

  .n8n-chat-askButton-KjW1p:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #00daff;
  }

  .n8n-chat-arrowBack-cMjWe {
    display: none;
    position: absolute;
    right: 10px;
    color: #00daff;
  }

  .n8n-chat-askButton-KjW1p:hover > .n8n-chat-arrowBack-cMjWe {
    display: block;
  }
  
  .n8n-chat-resultSnippet-vi0Ka > *:not(:first-child) {
    display: none;
  }

  .n8n-chat-resultCard-_zTuj {
    display: block;
    padding: 12px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    text-decoration: none;
    color: #ccc;
    transition: all .5s ease;
  }

  .n8n-chat-resultCrumb-i8QtT {
    color: #888;
    font-size: 12px;
  }

  .n8n-chat-resultSnippet-vi0Ka {
    color: #888;
  }
  
  .n8n-chat-resultCard-_zTuj:hover {
    border-color: #00daff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .n8n-chat-resultTitle-iE8_q {
    font-weight: 600;
    color: #fff;
    display: flex;
    font-size: 18px;
    text-transform: capitalize;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    margin-bottom: 4px;
  }

  .n8n-chat-thinkingHighlight-Pf1_N {
    background: linear-gradient(90deg, #00daff 0%, #7e5bef 50%, #00daff 100%);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: n8n-chat-gradientSweep-f3c2g 2s ease-in-out infinite;
  }
  
  @keyframes n8n-chat-gradientSweep-f3c2g {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }
  
  /* Bouncing dots */
  .n8n-chat-bounceDots-MuV0Y {
    display: inline-flex;
    margin-left: 6px;
  }
  
  .n8n-chat-bounceDots-MuV0Y span {
    animation: n8n-chat-bounce-POKc7 1.4s infinite;
    display: inline-block;
    font-weight: bold;
    color: #7e5bef;
    font-size: 18px;
    margin-left: 2px;
  }
  
  .n8n-chat-resultSnippet-vi0Ka {
    font-size: 0.9rem;
    max-height: 3.6em;
    overflow: hidden;
  }
  
  .n8n-chat-resultFooter-R9k50 {
    margin-top: 6px;
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    color: #888;
  }

  @media (max-width: 600px) {
    .n8n-chat-searchInput-Rvttv {
      width: 100%;
    }
    .n8n-chat-searchInputContainer-mCM6u {
      padding-top: 36px;
    }
  }  
