/* === Chatbot CSS === */

#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  max-height: 500px;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
  background: #111;
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 9999;
  border: 1px solid #00f7ff66;
  font-family: 'Segoe UI', sans-serif;
}

#chatbot-header {
  background: linear-gradient(to right, #00f7ff, #00d3cc);
  color: #000;
  padding: 12px 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

#chatbot-header button {
  background: none;
  border: none;
  color: #000;
  font-size: 18px;
  cursor: pointer;
}

#chatbot-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  color: #fff;
}

.chatbot-message {
  margin-bottom: 12px;
  line-height: 1.5;
}

.chatbot-message.user {
  text-align: right;
  color: #00f7ff;
}

.chatbot-message.bot {
  text-align: left;
  color: #fff;
}

#chatbot-input {
  display: flex;
  padding: 12px;
  border-top: 1px solid #222;
  background-color: #000;
}

#chatbot-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #00f7ff;
  border-radius: 8px;
  background-color: #0c0c0c;
  color: #00f7ff;
  outline: none;
  font-size: 14px;
}

#chatbot-input button {
  margin-left: 8px;
  padding: 10px 16px;
  background: linear-gradient(to right, #00f7ff, #00d3cc);
  border: none;
  border-radius: 8px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

#chatbot-input button:hover {
  background: linear-gradient(to right, #00e1e1, #00bfbf);
}

#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  padding: 12px 18px;
  border-radius: 50px;
  background: linear-gradient(to right, #00f7ff, #00d3cc);
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.6);
}
