/* AN Chat Clean UI */

/* 1) Kill any thin green divider lines caused by borders/shadows/gradients */
.anmcs-chat,
.anmcs-thread,
.anmcs-inputbar,
.anmcs-header {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* If any pseudo element is drawing a line, neutralize it */
.anmcs-chat::before,
.anmcs-chat::after,
.anmcs-thread::before,
.anmcs-thread::after,
.anmcs-inputbar::before,
.anmcs-inputbar::after,
.anmcs-header::before,
.anmcs-header::after {
  content: none !important;
}

/* Flatten backgrounds to remove gradient seams that can appear as a line */
.anmcs-thread,
.anmcs-inputbar {
  background: #ffffff !important;
}

/* 2) Hide suggestion chips once results are present */
body.anmcs-has-results .anmcs-suggest { display: none !important; }

/* Also tighten spacing below results so nothing looks cluttered */
body.anmcs-has-results .anmcs-thread { padding-bottom: 8px !important; }

/* Ensure the search button area doesn't render a boundary line */
.anmcs-input { box-shadow: 0 0 0 0 rgba(0,0,0,0) !important; }
.anmcs-send { box-shadow: none !important; }

/* Optional: subtle divider inside bubbles only (light gray), not green */
.anmcs-bubble { border: 1px solid #eef2ef !important; }
.anmcs-msg.user .anmcs-bubble { border: none !important; } /* keep user bubble solid green */
