/* Admin surface — desktop-first internal dashboard. Tuned against admin.jsx references. */

.bh-admin-body {
  background: var(--bh-canvas);
  min-height: 100vh;
  font-family: var(--bh-font-sans);
  color: var(--bh-ink);
  display: flex;
  margin: 0;
}

/* ── Sidebar ────────────────────────────── */
.bh-sidebar {
  width: 240px;
  flex-shrink: 0;
  height: 100vh;
  position: sticky;
  top: 0;
  background: #fff;
  border-right: 1px solid var(--bh-hairline);
  display: flex;
  flex-direction: column;
  min-height: 0;
  box-sizing: border-box;
}
.bh-sidebar__brand,
.bh-sidebar__foot { margin-left: 16px; margin-right: 16px; }
.bh-sidebar__brand { margin-top: 20px; }
.bh-sidebar__nav { padding: 0 16px; }
.bh-sidebar__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  padding: 4px 4px 18px;
  border-bottom: 1px solid var(--bh-hairline-soft);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.bh-sidebar__logo {
  height: 32px;
  width: auto;
  max-width: 100%;
  display: block;
}
.bh-sidebar__subtitle {
  font-size: 11.5px;
  color: var(--bh-muted);
  letter-spacing: 0.2px;
}

.bh-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--bh-hairline) transparent;
}
.bh-sidebar__nav::-webkit-scrollbar { width: 6px; }
.bh-sidebar__nav::-webkit-scrollbar-thumb { background: var(--bh-hairline); border-radius: 3px; }
.bh-sidebar__nav::-webkit-scrollbar-track { background: transparent; }
.bh-sidebar__group-label {
  font-size: 11.5px;
  font-weight: 550;
  color: var(--bh-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 16px 8px 6px;
}
.bh-sidebar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--bh-body);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: background .12s, color .12s;
}
.bh-sidebar__item:hover { background: var(--bh-canvas); color: var(--bh-ink); }
.bh-sidebar__item--active {
  background: var(--bh-primary-soft);
  color: var(--bh-primary);
}

.bh-sidebar__foot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  border-top: 1px solid var(--bh-hairline-soft);
  background: #fff;
}
.bh-sidebar__foot-meta { line-height: 1.25; flex: 1; min-width: 0; }
.bh-sidebar__foot-name {
  font-size: 13px;
  font-weight: 550;
  color: var(--bh-ink);
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bh-sidebar__foot-role { font-size: 11.5px; color: var(--bh-muted); }
.bh-sidebar__signout {
  appearance: none;
  background: transparent;
  border: 1px solid var(--bh-hairline);
  border-radius: 8px;
  color: var(--bh-muted);
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color .12s, color .12s, border-color .12s;
}
.bh-sidebar__signout:hover {
  color: var(--bh-primary);
  border-color: var(--bh-primary);
  background: var(--bh-primary-soft);
}
.bh-sidebar__foot form.button_to { margin: 0; }

.bh-admin-avatar {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: var(--bh-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

/* ── Main column ────────────────────────── */
.bh-admin-main {
  flex: 1;
  min-width: 0;
}

.bh-admin-flash {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 12px 16px;
  background: var(--bh-positive-soft);
  color: var(--bh-positive-dark);
  border-left: 3px solid var(--bh-positive);
  border-radius: 8px;
  font-size: 14px;
}

.bh-admin-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 32px 60px;
}

.bh-admin-header { margin-bottom: 28px; }
.bh-admin-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bh-admin-h1 {
  font-family: var(--bh-font-serif);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bh-ink);
  margin: 0 0 8px;
}
.bh-admin-subtitle {
  font-size: 15px;
  color: var(--bh-body);
  line-height: 1.5;
  margin: 0;
  max-width: 640px;
}

/* ── Toolbar (filters + search) ─────────── */
.bh-admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.bh-filter-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bh-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--bh-hairline);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-body);
  text-decoration: none;
  transition: border-color .12s, background .12s, color .12s;
}
.bh-filter-chip:hover { border-color: var(--bh-primary); }
.bh-filter-chip--active {
  background: var(--bh-primary);
  border-color: var(--bh-primary);
  color: #fff;
}
.bh-filter-chip__count {
  font-size: 11.5px;
  opacity: 0.75;
}

.bh-search {
  width: 280px;
  padding: 10px 14px;
  border: 1.5px solid var(--bh-hairline);
  border-radius: 8px;
  background: #fff;
  font-family: var(--bh-font-sans);
  font-size: 14px;
  color: var(--bh-ink);
  outline: none;
  transition: box-shadow .12s, border-color .12s;
  box-sizing: border-box;
}
.bh-search:focus {
  border-color: var(--bh-primary);
  box-shadow: 0 0 0 4px var(--bh-primary-soft);
}

/* ── Stat cards ─────────────────────────── */
.bh-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.bh-stat {
  background: #fff;
  border: 1px solid var(--bh-hairline);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--bh-shadow-card);
}
.bh-stat__num {
  font-family: var(--bh-font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--bh-ink);
  line-height: 1;
}
.bh-stat__label {
  font-size: 12.5px;
  color: var(--bh-muted);
  margin-top: 6px;
}

/* ── Card ───────────────────────────────── */
.bh-admin-card {
  background: #fff;
  border: 1px solid var(--bh-hairline);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--bh-shadow-card);
}

/* ── Form ───────────────────────────────── */
.bh-admin-form { display: flex; flex-direction: column; gap: 18px; }
.bh-admin-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bh-admin-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.bh-admin-hint {
  font-size: 12.5px;
  color: var(--bh-muted);
  margin: 0;
}
.bh-admin-error {
  background: var(--bh-danger-soft);
  color: var(--bh-danger);
  border-left: 3px solid var(--bh-danger);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
}
.bh-admin-error ul { margin: 6px 0 0 18px; padding: 0; }

.bh-input,
.bh-select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--bh-hairline);
  border-radius: 10px;
  font-family: var(--bh-font-sans);
  font-size: 15px;
  color: var(--bh-ink);
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: box-shadow .12s, border-color .12s;
}
.bh-input:focus,
.bh-select:focus {
  border-color: var(--bh-primary);
  box-shadow: 0 0 0 4px var(--bh-primary-soft);
}
.bh-select {
  padding-right: 40px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' stroke='%236C7A82' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.bh-radio-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bh-radio-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1.5px solid var(--bh-hairline);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  min-height: 40px;
  transition: border-color .12s, background .12s, color .12s;
}
.bh-radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.bh-radio-pill:hover { border-color: var(--bh-primary); }
.bh-radio-pill:has(input:checked) {
  background: var(--bh-primary);
  color: #fff;
  border-color: var(--bh-primary);
}

.bh-admin-link {
  color: var(--bh-primary);
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}
.bh-admin-link:hover { text-decoration: underline; }

/* ── Table ──────────────────────────────── */
.bh-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.bh-admin-table th {
  text-align: left;
  padding: 12px 14px;
  color: var(--bh-muted);
  font-size: 11.5px;
  font-weight: 550;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bh-hairline);
}
.bh-admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--bh-hairline-soft);
  vertical-align: top;
}
.bh-admin-table tr:last-child td { border-bottom: none; }
.bh-admin-table tbody tr { transition: background .12s; }
.bh-admin-table tbody tr:hover { background: var(--bh-canvas); }
.bh-table-name { font-weight: 550; color: var(--bh-ink); }
.bh-table-name a { color: var(--bh-ink); text-decoration: none; }
.bh-table-name a:hover { color: var(--bh-primary); }
.bh-table-meta { color: var(--bh-muted); font-size: 12.5px; }
.bh-table-link {
  color: var(--bh-primary);
  text-decoration: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
}
.bh-table-link:hover { text-decoration: underline; }

.bh-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  background: var(--bh-hairline-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--bh-body);
}
.bh-chip--positive { background: var(--bh-positive-soft); color: var(--bh-positive-dark); }
.bh-chip--negative { background: var(--bh-danger-soft); color: var(--bh-danger); }
.bh-chip--pending { background: var(--bh-warn-soft); color: var(--bh-warn); }
.bh-chip--admin { background: var(--bh-primary-soft); color: var(--bh-primary); }
.bh-chip--moderator { background: var(--bh-accent-soft); color: var(--bh-accent-dark); }

/* Pagination — selectors are .bh-pagination-scoped so they out-specific
   recipient.css's `.bh-btn { width: 100% }`. */
.bh-pagination {
  margin-top: 16px;
  padding: 12px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.bh-pagination__summary {
  color: var(--bh-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bh-pagination__summary strong { color: var(--bh-ink); font-weight: 600; }
.bh-pagination__per-page-form { margin: 0; }
.bh-pagination__controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.bh-pagination__page {
  color: var(--bh-muted);
  padding: 0 6px;
  white-space: nowrap;
}
.bh-pagination .bh-btn {
  width: auto;
  padding: 6px 12px;
  font-size: 13px;
  min-height: 32px;
  white-space: nowrap;
}
.bh-pagination .bh-btn--disabled,
.bh-pagination .bh-btn--disabled:hover {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Users page */
.bh-admin-users__role-col { width: 220px; }
.bh-admin-users__role-form { margin: 0; display: inline-block; }
.bh-select--inline {
  width: auto;
  min-width: 140px;
  padding: 6px 28px 6px 10px;
  font-size: 13px;
  height: 32px;
  background-color: #fff;
}

/* ── Empty state ────────────────────────── */
.bh-empty {
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ── Success card (contact show) ────────── */
.bh-success-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--bh-positive);
  border-left-width: 4px;
  border-radius: 16px;
  box-shadow: var(--bh-shadow-card);
  margin-bottom: 24px;
}
.bh-success-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--bh-positive-soft);
  color: var(--bh-positive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bh-success-card__title {
  font-family: var(--bh-font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--bh-ink);
  margin: 0 0 4px;
}
.bh-success-card__meta {
  font-size: 13.5px;
  color: var(--bh-muted);
  margin: 0 0 16px;
}

.bh-token-card {
  background: var(--bh-primary-soft);
  border-radius: 10px;
  padding: 14px 16px;
}
.bh-token-card__label {
  font-size: 11.5px;
  font-weight: 550;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--bh-primary-dark);
  margin-bottom: 6px;
}
.bh-token-card__url {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.bh-token-card__url code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--bh-primary);
  word-break: break-all;
}

/* ── Compose & Send ─────────────────────── */
.bh-template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.bh-template-card {
  position: relative;
  display: block;
  cursor: pointer;
  border-radius: 12px;
}
.bh-template-card input { position: absolute; opacity: 0; pointer-events: none; }
.bh-template-card__inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  background: #fff;
  border: 1.5px solid var(--bh-hairline);
  border-radius: 12px;
  min-height: 110px;
  transition: border-color .12s, box-shadow .12s;
}
.bh-template-card:hover .bh-template-card__inner { border-color: var(--bh-primary); }
.bh-template-card:has(input:checked) .bh-template-card__inner {
  border-color: var(--bh-primary);
  border-width: 2px;
  padding: 13px;  /* compensate for 1px thicker border */
  box-shadow: 0 0 0 4px var(--bh-primary-soft);
}
.bh-template-card__name {
  font-weight: 550;
  color: var(--bh-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.bh-template-card__body {
  font-size: 13px;
  color: var(--bh-muted);
  line-height: 1.4;
}

.bh-audience-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bh-audience-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid var(--bh-hairline);
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: border-color .12s, background .12s;
}
.bh-audience-row:hover { border-color: var(--bh-primary); }
.bh-audience-row input { accent-color: var(--bh-primary); }
.bh-audience-row:has(input:checked) {
  border-color: var(--bh-primary);
  background: var(--bh-primary-soft);
}
.bh-audience-row__label { flex: 1; font-weight: 500; color: var(--bh-ink); }
.bh-audience-row__count { font-size: 13px; color: var(--bh-muted); }

/* ── File input ─────────────────────────── */
.bh-file-input {
  display: block;
  width: 100%;
  padding: 13px 14px;
  border: 1.5px dashed var(--bh-hairline);
  border-radius: 10px;
  background: var(--bh-canvas);
  font-family: var(--bh-font-sans);
  font-size: 14px;
  color: var(--bh-body);
  cursor: pointer;
  box-sizing: border-box;
}
.bh-file-input:hover { border-color: var(--bh-primary); }
.bh-file-input::file-selector-button {
  margin-right: 12px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background: var(--bh-primary);
  color: #fff;
  font-weight: 550;
  font-size: 13px;
  cursor: pointer;
}

/* ── Opt-outs ───────────────────────────── */
.bh-optout-strip {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12.5px;
}
.bh-optout-strip__label {
  color: var(--bh-muted);
  font-weight: 550;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-size: 11.5px;
}
.bh-optout-actions {
  margin-bottom: 24px;
}

/* ── Analytics ──────────────────────────── */
.bh-range-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--bh-hairline);
  border-radius: 999px;
  padding: 2px;
  gap: 0;
}
.bh-range-toggle__item {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-body);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.bh-range-toggle__item:hover { color: var(--bh-ink); }
.bh-range-toggle__item--active {
  background: var(--bh-primary);
  color: #fff;
}

.bh-funnel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bh-funnel__row {
  display: grid;
  grid-template-columns: 180px 1fr 120px;
  align-items: center;
  gap: 14px;
}
.bh-funnel__label {
  font-size: 14px;
  font-weight: 550;
  color: var(--bh-ink);
}
.bh-funnel__bar-wrap {
  height: 20px;
  background: var(--bh-hairline-soft);
  border-radius: 4px;
  overflow: hidden;
}
.bh-funnel__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--bh-primary) 0%, var(--bh-accent) 100%);
  border-radius: 4px;
  transition: width .4s ease;
}
.bh-funnel__value {
  font-size: 14px;
  font-weight: 550;
  color: var(--bh-ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.bh-funnel__pct {
  font-size: 12px;
  color: var(--bh-muted);
  font-weight: 500;
}

.bh-analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) {
  .bh-analytics-grid { grid-template-columns: 1fr; }
  .bh-funnel__row { grid-template-columns: 120px 1fr 90px; gap: 10px; }
}

.bh-sentiment-bar {
  display: flex;
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bh-hairline-soft);
}
.bh-sentiment-bar__pos { background: var(--bh-positive); }
.bh-sentiment-bar__neg { background: var(--bh-danger); }
.bh-sentiment-legend {
  font-size: 13px;
  color: var(--bh-body);
  margin-top: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.bh-sentiment-legend__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-right: 6px;
}
.bh-sentiment-legend__dot--pos { background: var(--bh-positive); }
.bh-sentiment-legend__dot--neg { background: var(--bh-danger); }

.bh-platform-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bh-platform-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--bh-hairline-soft);
}
.bh-platform-list li:last-child { border-bottom: none; }
.bh-platform-list__label { font-size: 14px; color: var(--bh-ink); font-weight: 500; }
.bh-platform-list__count {
  font-family: var(--bh-font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--bh-primary);
}

/* ── Feedback-question list ─────────────── */
.bh-question-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bh-question-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--bh-hairline);
  border-radius: 12px;
  transition: box-shadow .12s, transform .12s;
}
.bh-question-row:hover { box-shadow: var(--bh-shadow-card); }
.bh-question-row--dragging { opacity: 0.5; }
.bh-question-row__handle {
  color: var(--bh-muted);
  font-size: 20px;
  cursor: grab;
  user-select: none;
  padding-top: 2px;
}
.bh-question-row__handle:active { cursor: grabbing; }
.bh-question-row__body { flex: 1; }
.bh-question-row__kind { display: flex; gap: 6px; margin-bottom: 8px; }
.bh-question-row__prompt {
  font-size: 15px;
  font-weight: 550;
  color: var(--bh-ink);
  margin-bottom: 6px;
}
.bh-question-row__options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.bh-question-row__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

/* ── Merge tags ─────────────────────────── */
.bh-merge-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: var(--bh-primary-soft);
  border-radius: 8px;
  font-size: 12.5px;
}
.bh-merge-tags__label {
  color: var(--bh-primary-dark);
  font-weight: 550;
  margin-right: 4px;
}
.bh-merge-tags__chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  cursor: pointer;
  border: 1px dashed var(--bh-primary);
  color: var(--bh-primary-dark);
  background: #fff;
  padding: 2px 8px;
}
.bh-merge-tags__chip:hover { background: var(--bh-primary); color: #fff; }

/* ── Feedback display ───────────────────── */
.bh-feedback-field { margin-bottom: 16px; }
.bh-feedback-field__label {
  font-size: 11.5px;
  font-weight: 550;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--bh-muted);
  margin-bottom: 6px;
}
.bh-feedback-field__body {
  font-size: 15px;
  line-height: 1.5;
  color: var(--bh-ink);
  background: var(--bh-canvas);
  border-radius: 10px;
  padding: 14px 16px;
}
.bh-feedback-field__body p { margin: 0 0 8px; }
.bh-feedback-field__body p:last-child { margin-bottom: 0; }

.bh-click-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bh-click-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bh-hairline-soft);
}
.bh-click-list li:last-child { border-bottom: none; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .bh-admin-body { flex-direction: column; }
  .bh-sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--bh-hairline);
    padding: 16px 20px;
  }
  .bh-sidebar__nav { flex-direction: row; flex-wrap: wrap; }
  .bh-sidebar__group-label { display: none; }
  .bh-sidebar__foot { display: none; }
  .bh-sidebar__brand { border-bottom: none; margin-bottom: 8px; padding-bottom: 8px; }
  .bh-admin-page { padding: 28px 20px 40px; }
  .bh-admin-h1 { font-size: 26px; }
  .bh-admin-form__row { grid-template-columns: 1fr; }
  .bh-stat-row { grid-template-columns: 1fr 1fr; }
  .bh-search { width: 100%; }
  .bh-admin-toolbar { flex-direction: column; align-items: stretch; }
}
