.um-form {
  margin-top: 95px !important;
}

#chatbot-container {
  width: 100%;
  max-width: 1000px;
  margin: 80px auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 100px !important;
}

#chatbot-messages {
  height: 300px;
  overflow-y: auto;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}

#chatbot-input {
  width: calc(100% - 80px);
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#chatbot-send {
  width: 80px;
  padding: 8px;
  margin-left: 5px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

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

#chatbot-end {
  width: 80px;
  padding: 8px;
  margin-left: 5px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

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



#chatbot-input-container {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

#chatbot-input {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  resize: vertical;
}

.loading-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.wp-block-kubio-footer [data-kubio]:not([class*=h-col-]),
.wp-block-kubio-footer.wp-block {
  z-index: -1 !important;
}