/* ===== VoyageVista Chat Widget ===== */
#vv-chat-widget{
  position:fixed; right:24px; bottom:calc(24px + var(--vv-footer-offset, 0px));
  z-index:9999; font-family:inherit;
}
.vv-chat-button{
  width:56px; height:56px; border-radius:50%; border:none; cursor:pointer;
  font-size:24px; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
  background:#0864dc; color:#fff;
}
.vv-chat-window{
  position:fixed; right:24px; bottom:calc(96px + var(--vv-footer-offset, 0px));
  width:440px; height:420px; max-height:80vh; background:#fff; border-radius:16px;
  box-shadow:0 18px 45px rgba(0,0,0,0.35);
  display:flex; flex-direction:column; overflow:hidden;
  opacity:0; transform:translateY(12px) scale(0.96);
  pointer-events:none;
  transition:opacity .22s ease-out, transform .22s ease-out;
}
.vv-chat-window.vv-open{
  opacity:1; transform:translateY(0) scale(1); pointer-events:auto;
}
.vv-chat-header{
  padding:10px 12px; background:#0864dc; color:#fff;
  display:flex; align-items:center; justify-content:space-between;
}
.vv-chat-title{font-weight:600; font-size:14px;}
.vv-chat-close{
  border:none; background:transparent; color:#fff; font-size:18px; cursor:pointer;
}
.vv-chat-history{
  padding:10px 12px; background:#f6f6f8; flex:1; overflow-y:auto; font-size:12px;
  white-space:pre-wrap;
}
.vv-chat-input-row{
  display:flex; gap:6px; padding:8px 10px 10px;
  border-top:1px solid #e0e0e0; background:#fff;
}
.vv-chat-input{flex:1; resize:none; font-size:12px;}
.vv-chat-send{
  border:none; padding:6px 10px; font-size:12px; border-radius:6px; cursor:pointer;
  background:#0864dc; color:#fff;
}
.vv-msg{margin-bottom:6px; max-width:90%; clear:both;}
.vv-msg-user{margin-left:auto; text-align:right;}
.vv-msg-bot{margin-right:auto; text-align:left;}
.vv-msg-bubble{
  display:inline-block; padding:6px 8px; border-radius:10px; font-size:12px; line-height:1.3;
  white-space:pre-wrap;
}
.vv-msg-user .vv-msg-bubble{background:#0864dc; color:#fff; border-bottom-right-radius:2px;}
.vv-msg-bot  .vv-msg-bubble{background:#fff; color:#333; border-bottom-left-radius:2px; border:1px solid #e0e0e0;}

/* klikbare reisnaam */
.vv-trip-link{
  color:#0864dc;
  text-decoration:underline;
  font-weight:700;
  cursor:pointer;
  pointer-events:auto;
}
.vv-msg-bubble a{ pointer-events:auto; }
.vv-trip-link:hover{ opacity:.85; }

@media (max-width:600px){
  .vv-chat-window{
    width:calc(100vw - 32px); right:16px;
    bottom:calc(80px + var(--vv-footer-offset, 0px));
    max-height:85vh; height:65vh;
  }
}
