.helpbot-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  border: 0;
  border-radius: 999px;
  padding: 13px 17px;
  background: #087286;
  color: #ffffff;
  font: 700 15px/1.2 Arial, sans-serif;
  box-shadow: 0 10px 28px rgba(15, 27, 38, 0.24);
  cursor: pointer;
}
.helpbot-button.open,
.helpbot-button:hover {
  background: #075d6d;
}
.helpbot-panel {
  position: fixed;
  right: 18px;
  bottom: 74px;
  z-index: 91;
  width: min(390px, calc(100vw - 28px));
  max-height: min(660px, calc(100vh - 96px));
  overflow: auto;
  background: #ffffff;
  border: 1px solid #c9d9df;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 27, 38, 0.22);
  color: #101820;
  font-family: Arial, sans-serif;
}
.helpbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  background: #e8f3f6;
  border-bottom: 1px solid #d7e2e8;
}
.helpbot-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #101820;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.helpbot-body {
  padding: 14px;
}
.helpbot-intro {
  margin: 0 0 10px;
  font-weight: 700;
}
.helpbot-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.helpbot-topic {
  border: 1px solid #b8cbd4;
  border-radius: 999px;
  padding: 8px 10px;
  background: #ffffff;
  color: #075d6d;
  font: 700 14px/1.2 Arial, sans-serif;
  cursor: pointer;
}
.helpbot-topic.active,
.helpbot-topic:hover {
  border-color: #087286;
  background: #087286;
  color: #ffffff;
}
.helpbot-answer {
  border: 1px solid #d7e2e8;
  border-radius: 8px;
  padding: 12px;
  background: #f8fbfc;
}
.helpbot-answer h3 {
  margin: 0 0 7px;
  font-size: 18px;
}
.helpbot-answer p {
  margin: 0 0 10px;
}
.helpbot-link,
.helpbot-contact {
  display: block;
  color: #075d6d !important;
  font-weight: 700;
  margin-top: 8px;
}
.helpbot-contact {
  border-top: 1px solid #e2edf2;
  padding-top: 12px;
}
@media (max-width: 520px) {
  .helpbot-button {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
  .helpbot-panel {
    right: 10px;
    bottom: 64px;
    width: calc(100vw - 20px);
  }
}