/* Venn Concierge widget — VennBoard navy/paper palette. */
.vbc-root { position: fixed; right: 20px; bottom: 20px; z-index: 99999;
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }

.vbc-launch { display: inline-flex; align-items: center; gap: 8px; border: 0; cursor: pointer;
  background: #0d1b3e; color: #fff; padding: 12px 18px; border-radius: 999px;
  box-shadow: 0 6px 20px rgba(13,27,62,.28); font-size: 15px; font-weight: 500; }
.vbc-launch:hover { background: #16264f; }
.vbc-launch.vbc-hidden { display: none; }
.vbc-launch-icon { font-size: 17px; }

.vbc-panel { width: 360px; max-width: calc(100vw - 32px); height: 520px; max-height: calc(100vh - 100px);
  background: #fff; border: 1px solid #e8e4dc; border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 14px 44px rgba(13,27,62,.24); }
/* Must beat the display:flex above — otherwise [hidden] is ignored and the panel is always
   open (and the close button appears to do nothing). */
.vbc-panel[hidden] { display: none; }

.vbc-head { background: #0d1b3e; color: #fff; padding: 14px 16px; display: flex;
  align-items: center; justify-content: space-between; }
.vbc-title { font-weight: 600; font-size: 16px; }
.vbc-sub { font-size: 11px; color: rgba(255,255,255,.7); letter-spacing: .04em; }
.vbc-close { background: none; border: 0; color: #fff; font-size: 24px; line-height: 1; cursor: pointer; opacity: .8; }
.vbc-close:hover { opacity: 1; }

.vbc-body { flex: 1; overflow-y: auto; padding: 14px; background: #f7f5f0; }
.vbc-msg { max-width: 82%; padding: 9px 12px; border-radius: 12px; margin-bottom: 8px;
  font-size: 14px; line-height: 1.45; white-space: pre-wrap; word-wrap: break-word; }
.vbc-bot { background: #fff; border: 1px solid #e8e4dc; color: #1c2230; border-bottom-left-radius: 4px; }
.vbc-user { background: #0d1b3e; color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.vbc-typing { color: #9aa7b4; letter-spacing: 3px; }

.vbc-form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid #e8e4dc; background: #fff; }
.vbc-input { flex: 1; border: 1px solid #d9d4c9; border-radius: 999px; padding: 10px 14px; font-size: 14px; outline: none; }
.vbc-input:focus { border-color: #0d1b3e; }
.vbc-send { border: 0; background: #0d1b3e; color: #fff; width: 40px; border-radius: 50%; cursor: pointer; font-size: 18px; }
.vbc-send:hover { background: #16264f; }
