/* Export / copy toolbar under agent-assist answers */
.og-assist-export {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.og-assist-export__btn {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #f8fafc;
  color: #334155;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 4px 9px;
  border-radius: 6px;
  cursor: pointer;
}

.og-assist-export__btn:hover:not(:disabled) {
  background: #eef2f7;
  border-color: rgba(15, 23, 42, 0.22);
  color: #0f172a;
}

.og-assist-export__btn:disabled {
  opacity: 0.65;
  cursor: default;
}

[data-bs-theme="dark"] .og-assist-export {
  border-top-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .og-assist-export__btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #e2e8f0;
}

[data-bs-theme="dark"] .og-assist-export__btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
