/* ── BOT SUGGESTION ── */
.bot-suggestion {
  display: none;
  flex-shrink: 0;
  padding: 8px 14px 10px;
  background: #f0f7ff;
  border-top: 0.5px solid #b5d4f4;
}
.bot-suggestion.visible { display: block; }

.bot-suggestion-label {
  font-size: 11px;
  font-weight: 600;
  color: #2383e2;
  margin-bottom: 4px;
}

.bot-suggestion-text {
  font-size: 13px;
  color: #37352f;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
  margin-bottom: 8px;
}

.bot-suggestion-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bot-send-btn {
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 6px;
  border: 0;
  background: #2383e2;
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
}
.bot-send-btn:hover { background: #1a6fc4; }
.bot-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.bot-edit-btn {
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid #b5d4f4;
  background: #ffffff;
  color: #2383e2;
  cursor: pointer;
  font-family: inherit;
}
.bot-edit-btn:hover { background: #e8f3ff; }

.bot-dismiss-btn {
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid #e9e9e7;
  background: #ffffff;
  color: #9b9a97;
  cursor: pointer;
  font-family: inherit;
}
.bot-dismiss-btn:hover { background: #f1f1ef; }
