#chatbot-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 0 12px #1aff4c;
}

#chatbot {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 320px;
  max-height: 420px;
  background: #161616;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  border: 1px solid #1aff4c;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.chatbot-header {
  background: #08140d;
  padding: 10px 12px;
  font-weight: 700;
  color: #1aff4c;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatbot-close {
  cursor: pointer;
}

.chatbot-body {
  padding: 10px;
  overflow-y: auto;
  flex: 1;
  font-size: 13px;
}

.bot-msg {
  background: #023020;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  max-width: 90%;
}

.user-msg {
  background: #1aff4c;
  color: #000;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  margin-left: auto;
  max-width: 90%;
}

.chatbot-questions {
  padding: 10px;
  border-top: 1px solid #222;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chatbot-questions button {
  background: #08140d;
  border: 1px solid #1aff4c;
  color: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
}

.chatbot-questions button:hover {
  background: #1aff4c;
  color: #000;
}

#chatbot.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .chatbot-questions button:hover {
    background: #1aff4c;
    color: #000;
  }
}
