#chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  font-family: var(--bs-body-font-family);
  max-width: 300px;
}

#chatbot-box {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  display: none;
}


#chatbot-log {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  background: #fff;
}

#chatbot-toggle {
  background: #ff161f;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  border: none;
  cursor: pointer;
}


.chatbot-message,
#chatbot-input {
  margin: 5px 0;
  padding: 10px;
  border-radius: 10px;
}

#chatbot-input {
  width: 100%;

  border: 1px solid black;
}

#chatbot-input-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 15px;
  position: sticky;
  bottom: 0;
  z-index: 1;
}

#chatbot-send {
  height: 45px;
  width: 45px;
  background-color: #ff161f;
  border-radius: 10px;
  color: white;
  border: 2px solid black;
}

.from-user {
  background-color: #DCF8C6;
  text-align: right;
}

.from-bot {
  background-color: #F1F0F0;
  text-align: left;
}

.chatbot-buttons {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chatbot-option {
  background: #000;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: all;
}

.chatbot-option:hover {
  background-color: #ff161f;
  color: #fff;
}