#chat-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  display: none;
  z-index: 9999;
}

#chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0b6cff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  font-size: 20px;
  cursor: pointer;
  z-index: 9999;
}

#chat-input {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  border: 1px solid #ccc;
}

#chat-output {
  margin-top: 12px;
  white-space: pre-wrap;
  font-size: 14px;
}