/* Chatbot Container */
#kelvin-chatbot {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Open Button */
#openChatBtn {
  font-weight: 600;
  padding: 8px 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}
#openChatBtn:hover {
  transform: translateY(-2px);
}

/* Chat Window */
#chatWindow {
  display: none;
  width: 300px;
  height: 420px;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  padding: 10px;
  position: relative;
}

/* Chat Area */
#chatMessages {
  height: 85%;
  overflow-y: auto;
  padding: 5px;
  font-size: 0.9rem;
  color: #333;
}
#chatMessages strong {
  display: block;
  margin-top: 8px;
  color: #0d6efd;
}

/* User Input */
#userInput {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Link Styling Inside Responses */
#chatMessages a {
  color: #0d6efd;
  text-decoration: underline;
}
#chatMessages a:hover {
  text-decoration: none;
}
