.seek-input-cont br {
display: none;
}

.seek-input-cont p {
    margin: 0 !important;
}

.typing-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.typing-indicator .dots {
  display: inline-flex;
  gap: 3px;
}
.typing-indicator .dots span {
  display: inline-block;
  width: 6px; height: 6px;
  background: #555;
  border-radius: 50%;
  animation: blink 1.4s infinite both;
}
.typing-indicator .dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator .dots span:nth-child(3) { animation-delay: 0.4s; }

.typing-text {
  font-size: 13px;
  white-space: nowrap;
}

@keyframes blink {
  0% { opacity: .2; }
  20% { opacity: 1; }
  100% { opacity: .2; }
}

#chatbox p { margin: 0; }
#chatbox ul { margin: 0; padding-left: 20px; }
#chatbox h1, #chatbox h2, #chatbox h3 {
  margin: 4px 0;
  font-size: 1em;
}