#ody-chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

#chatbot-toggle {
  background-color: #0f172a;
  color: white;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#chatbot-window {
  background: white;
  color: black;
  width: 320px;
  max-height: 450px;
  border-radius: 10px;
  overflow-y: auto;
  margin-top: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  display: none;
}

.chatbot-header {
  background-color: #0f172a;
  color: white;
  padding: 12px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: bold;
}

.chatbot-content {
  padding: 12px;
}

.chatbot-content h4 {
  margin: 14px 0 6px;
  color: #0f172a;
  font-size: 1rem;
}

.chatbot-content p {
  margin: 4px 0;
}

.chatbot-content a {
  color: #1d4ed8;
  text-decoration: none;
}

.chatbot-content a:hover {
  text-decoration: underline;
}
