

.input_top_row {
  width: 100%;
  background: var(--background);
  padding: 4px 12px 0 12px;
  border-top: 1px solid var(--testit-gray);
  box-sizing: border-box;
}

.attachment-row-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Chips container */
#attachment-chips {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 4px;
  max-height: 72px;
  overflow-y: auto;
}

.chat-font-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding-bottom: 2px;
}

.chat-font-btn {
  min-width: 28px;
  height: 28px;
  border: 1px solid var(--border-input);
  border-radius: 999px;
  background: #ffffff;
  color: var(--testit-blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.chat-font-btn:hover {
  background: var(--light-testit-blue);
}

.chat-font-indicator {
  min-width: 34px;
  text-align: center;
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 600;
}

