/* ============================================================
   Empty states
   Two of them, deliberately distinct: .empty is an invitation
   to add the first question; .no-results is a dead end inside
   the requests table.
   ============================================================ */

/* ---------- Wizard: no questions yet ---------- */

.empty {
  border: 1.5px dashed var(--border-4);
  border-radius: var(--r-lg);
  padding: 34px 20px;
  text-align: center;
}

.empty__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 10px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-5);
}

.empty__title {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
}

.empty__sub {
  font-size: 13px;
  color: var(--text-4);
  margin-top: 3px;
}

/* ---------- Console: filters matched nothing ---------- */

/* .no-results, not .empty — .empty is the wizard's "no questions yet" state. */
.no-results {
  padding: 56px 20px;
  text-align: center;
  color: var(--text-4);
}

.no-results__title {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 5px;
}

.no-results__note {
  font-size: 13px;
}
