/* LoanBerg Floating Chat Pill */

#lb-chat-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(120, 24, 54, 0.10);
  padding: 0.55rem 0.6rem 0.55rem 1rem;
  min-width: 560px;
}

.lb-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lb-bar-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.lb-bar-divider {
  width: 1px;
  height: 18px;
  background: var(--color-core);
  opacity: 0.35;
  flex-shrink: 0;
}

.lb-bar-hint {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text);
  white-space: nowrap;
  pointer-events: none;
  flex-shrink: 0;
}

.lb-bar-hint-light {
  font-weight: 400;
  color: var(--color-muted);
}

#lb-bar-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-mono);
  color: var(--color-text);
  resize: none;
  outline: none;
  max-height: 2.2em;
  overflow-y: hidden;
  line-height: 1.4;
  padding: 0;
}

#lb-bar-input::placeholder {
  color: var(--color-muted);
  font-weight: 600;
  font-family: var(--font-display);
}

#lb-bar-send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-core);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

#lb-bar-send:hover {
  background: #5a1228;
}

