#nb-chatbot-root,
#nb-chatbot-root *{box-sizing:border-box}
#nb-chatbot-root{
  --nb-brand:#406183;
  --nb-brand-dark:#2f4f6f;
  --nb-panel:#ffffff;
  --nb-text:#163047;
  --nb-muted:#5a7388;
  --nb-border:rgba(18,48,71,.08);
  --nb-shadow:0 22px 70px rgba(10,28,44,.22);
  --nb-radius:24px;
  position:fixed;right:22px;bottom:22px;z-index:999999;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
#nb-chatbot-root .nb-chatbot-launcher{
  appearance:none;border:0;background:linear-gradient(135deg,var(--nb-brand) 0%, var(--nb-brand-dark) 100%);color:#fff;border-radius:999px;min-height:62px;padding:14px 20px 14px 18px;display:flex;align-items:center;gap:12px;cursor:pointer;box-shadow:0 16px 36px rgba(64,97,131,.34);transition:transform .18s ease;
}
#nb-chatbot-root .nb-chatbot-launcher:hover{transform:translateY(-2px)}
#nb-chatbot-root .nb-chatbot-launcher__icon{width:32px;height:32px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.18);font-size:16px;line-height:1}
#nb-chatbot-root .nb-chatbot-launcher__text{font-size:15px;font-weight:800;letter-spacing:.01em}
#nb-chatbot-root .nb-chatbot-panel{width:min(390px, calc(100vw - 24px));height:min(680px, calc(100vh - 100px));background:var(--nb-panel);border-radius:var(--nb-radius);box-shadow:var(--nb-shadow);overflow:hidden;display:flex;flex-direction:column;opacity:0;pointer-events:none;transform:translateY(16px) scale(.98);transition:opacity .2s ease, transform .2s ease;position:absolute;bottom:78px;right:0;border:1px solid rgba(255,255,255,.22)}
#nb-chatbot-root.is-open .nb-chatbot-panel{opacity:1;pointer-events:auto;transform:translateY(0) scale(1)}
#nb-chatbot-root .nb-chatbot-panel__header{padding:18px 18px 16px;background:linear-gradient(135deg,var(--nb-brand) 0%, var(--nb-brand-dark) 100%);color:#fff;display:flex;align-items:center;gap:12px}
#nb-chatbot-root .nb-chatbot-panel__avatar{width:42px;height:42px;border-radius:14px;background:rgba(255,255,255,.18);display:grid;place-items:center;font-weight:900;letter-spacing:.04em}
#nb-chatbot-root .nb-chatbot-panel__headings strong{display:block;font-size:15px;line-height:1.1}
#nb-chatbot-root .nb-chatbot-panel__headings span{display:block;font-size:12px;opacity:.82;margin-top:3px}
#nb-chatbot-root .nb-chatbot-panel__close{margin-left:auto;border:0;background:rgba(255,255,255,.12);color:#fff;width:34px;height:34px;border-radius:12px;cursor:pointer;font-size:24px;line-height:1}
#nb-chatbot-root .nb-chatbot-panel__intro{padding:16px 18px 6px;border-bottom:1px solid var(--nb-border);background:linear-gradient(180deg, rgba(64,97,131,.06), rgba(64,97,131,0))}
#nb-chatbot-root .nb-chatbot-panel__intro h3{margin:0 0 6px;font-size:20px;line-height:1.15;color:var(--nb-text);font-weight:900}
#nb-chatbot-root .nb-chatbot-panel__intro p{margin:0;color:var(--nb-muted);font-size:13px;line-height:1.55}
#nb-chatbot-root .nb-chatbot-messages{flex:1;overflow:auto;padding:18px 16px 8px;background:radial-gradient(circle at top right, rgba(64,97,131,.05), transparent 32%),linear-gradient(180deg, #fff 0%, #fbfdff 100%)}
#nb-chatbot-root .nb-chatbot-bubble{max-width:87%;padding:12px 14px;border-radius:18px;margin-bottom:10px;font-size:14px;line-height:1.5;word-break:break-word}
#nb-chatbot-root .nb-chatbot-bubble--bot{background:#f3f7fb;color:var(--nb-text);border-top-left-radius:8px}
#nb-chatbot-root .nb-chatbot-bubble--user{margin-left:auto;background:linear-gradient(135deg,var(--nb-brand) 0%, var(--nb-brand-dark) 100%);color:#fff;border-top-right-radius:8px}
#nb-chatbot-root .nb-chatbot-bubble--note{background:#fff7df;color:#735200;border:1px solid rgba(242,179,25,.28)}
#nb-chatbot-root .nb-chatbot-quickactions{display:flex;flex-wrap:wrap;gap:8px;padding:0 16px 10px;background:#fff}
#nb-chatbot-root .nb-chatbot-chip{border:1px solid rgba(64,97,131,.16);background:#fff;color:var(--nb-text);border-radius:999px;padding:10px 14px;font-size:13px;font-weight:700;cursor:pointer;transition:all .18s ease}
#nb-chatbot-root .nb-chatbot-chip:hover{background:#f3f7fb;border-color:rgba(64,97,131,.26);transform:translateY(-1px)}
#nb-chatbot-root .nb-chatbot-chip--accent{background:rgba(64,97,131,.08)}
#nb-chatbot-root .nb-chatbot-input{border-top:1px solid var(--nb-border);padding:12px;display:flex;gap:10px;background:#fff}
#nb-chatbot-root .nb-chatbot-input input{flex:1;min-width:0;border:1px solid rgba(64,97,131,.15);border-radius:16px;padding:12px 14px;font-size:14px;outline:none}
#nb-chatbot-root .nb-chatbot-input input:focus{border-color:rgba(64,97,131,.45);box-shadow:0 0 0 3px rgba(64,97,131,.09)}
#nb-chatbot-root .nb-chatbot-input button{border:0;border-radius:16px;padding:0 16px;background:var(--nb-brand);color:#fff;font-weight:800;cursor:pointer;min-width:84px}
#nb-chatbot-root .nb-chatbot-footerlinks{display:flex;gap:14px;padding:0 16px 14px;background:#fff;justify-content:flex-start}
#nb-chatbot-root .nb-chatbot-footerlinks a{font-size:12px;color:var(--nb-brand);text-decoration:none;font-weight:700}
@media (max-width:640px){#nb-chatbot-root{right:12px;bottom:12px}#nb-chatbot-root .nb-chatbot-panel{bottom:74px;width:min(100vw - 12px, 390px);height:min(76vh, 680px)}#nb-chatbot-root .nb-chatbot-launcher__text{display:none}#nb-chatbot-root .nb-chatbot-launcher{padding:14px;min-width:62px;justify-content:center}}
