/* ---- Reports ----------------------------------------------
   Audit G21. Every class used by reports.js is defined here — the receivables
   page shipped a first draft referencing four classes that existed nowhere, and
   nothing in the gate reads CSS. */

.reports-basis {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #713F12;
  margin-bottom: 20px;
}
.reports-basis strong { display: block; margin-bottom: 3px; }

.reports-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.reports-scope {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.reports-empty {
  text-align: center;
  color: var(--text-2);
  font-size: 13px;
  padding: 22px 0;
}

@media (max-width: 900px) {
  .reports-actions > * { flex: 1 1 auto; }
}

/* As receivables-page: a named hook for the page rather than an anonymous
   div, and a class the checker can resolve. */
.reports-page { display: block; }

/* ---- The date range (3.8) -------------------------------- */
/* Two months and a clear, over data that is already monthly and already
   loaded. It governs the three ranged sections and says so on the two it does
   not - a filter that silently changed a pipeline would be worse than none. */
.reports-range {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.reports-range-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.reports-range .form-control { max-width: 190px; }
