#chatbot-toggle {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #002DB7;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
}

#chatbot-box {
  position: fixed;
  bottom: 65px;
  right: 15px;
  width: 320px;
  max-height: 85vh;
  background: #fff;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  font-size: 13px;
}

.chat-header {
  background: linear-gradient(135deg,#00175E,#002DB7);
  color: #fff;
  padding: 10px;
  display:flex;
}

#chat-close {
  margin-left:auto;
  background:none;
  border:none;
  color:#fff;
}

.chat-body {
  padding: 10px;
  overflow-y:auto;
  flex:1;
}

.chat-btn {
  background:#002DB7;
  color:#fff;
  padding:6px 10px;
  margin:4px;
  border-radius:16px;
  display:inline-block;
  cursor:pointer;
  font-size:12px;
}

.wa-btn {
  display:block;
  text-align:center;
  margin-top:8px;
  padding:10px;
  background:#25D366;
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-size:13px;
}
