/* Pictag.ai staging UI cleanup v1.6.18
   Scope: structural separators + sidebar chat alignment only.
   No JS and no application behavior changes.
*/

/* Remove the unwanted 1px structural divider lines. */
.sidebar-header {
  border-bottom: 0 !important;
}

.sidebar-footer {
  border-top: 0 !important;
}

.input-area {
  border-top: 0 !important;
}

/* Align chat-history rows with the New Chat button.
   New Chat is inset 12px from the sidebar edge, so history uses the same inset. */
.sidebar-content {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* Keep chat rows space-efficient and single-line. */
#chatHistory .chat-history-item {
  width: 100% !important;
  box-sizing: border-box !important;
}

#chatHistory .chat-history-title,
#chatHistory .chat-history-item > span {
  min-width: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
