/* Chatbot Container */
#chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  height: 500px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow: hidden;
  font-size: large;
  z-index: 1;
}

/* Chatbot Header */
#chatbot-header {
  padding: 10px;
  background-color: #007bff;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bolder;
}

#chatbot-header button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: medium;
}

/* Chatbot Body */
#chatbot-body {
  padding: 10px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#chatbot-messages {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#chatbot-messages li {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 18px;
  max-width: 80%;
  word-wrap: break-word;
}

#chatbot-messages .user {
  margin-left: auto;
  background-color: #dcf8c6;
}

#chatbot-messages .chatbot {
  background-color: #f1f0f0;
}

/* Chatbot Footer */
#chatbot-footer {
  padding: 10px;
  background-color: #f0f0f0;
  display: flex;
  font-size: large;
  justify-content: space-between;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

#chatbot-footer-input {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#chatbot-support {
  font-size: x-small;
  display: flex;
  flex-grow: 1;
  margin-right: 20px;
  margin-left: 10px;
  justify-content: space-between;
}

#chatbot-support-item {
  font-size: x-small;
  display: flex;
  flex-grow: 1;
}

#chatbot-input {
  flex-grow: 1;
  padding: 10px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 18px;
  outline: none;
  font-size: small;
}

#chatbot-footer button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-size: small;
}

#chatbot-footer button:hover {
  background-color: #0056b3;
}

#chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: medium;
  display: flex;
  justify-content: center;
  align-items: center;
}
