/* Chatbot Icon */
#chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}

/* Chat Window */
#chat-window {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 350px;
  height: 500px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  z-index: 999;
}

/* Header */
#chat-header {
  background: #007bff;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Chat Body */
#chat-body {
  height:320px;
  flex: 1;
  overflow-y: scroll;
  padding: 10px;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Chat Messages */
#chat-body div {
  word-wrap: break-word;
  white-space: pre-wrap;
}

/* Footer Lock */
.chat-footer {
  padding: 8px;
  border-top: 1px solid #ddd;
  background: #fff;
}

/* Textarea */
#chat-input {
  width: 100%;
  height: 60px;
  resize: none;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  font-family: sans-serif;
  font-size: 14px;
  overflow-y: auto;
}

/* Send Button */
.chat-footer button {
  width: 100%;
  margin-top: 5px;
  padding: 10px;
  background: #007bff;
  color: #fff;
  border: none;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.chat-footer button:hover {
  background-color: #0056b3;
}

/* Body */
body {
  margin: 0;
  font-family: sans-serif;
  background: #f4f4f4;
}
