/* chatbot.css */

#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

#chatbot-toggle {
  background-color: #111;
  color: #00f7ff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 0 10px #00f7ff;
}

#chatbot-window {
  display: none;
  flex-direction: column;
  width: 320px;
  height: 400px;
  background: #1a1a1a;
  color: white;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.7);
}

#chatbot-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  font-size: 14px;
}

#chatbot-input {
  border: none;
  padding: 12px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  background: #0d0d0d;
  color: #00f7ff;
  border-top: 1px solid #00f7ff;
}

#chatbot-input:focus {
  outline: none;
}

.chatbot-msg {
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1.4;
}

.chatbot-msg.user {
  background: #00f7ff;
  color: #000;
  text-align: right;
}

.chatbot-msg.bot {
  background: #222;
  color: #fff;
  text-align: left;
}
