.cb-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.72);
  border-radius: 1rem;
  padding: 1rem;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  text-align: left;
}
.cb-card:hover {
  transform: translateY(-1px);
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(30, 41, 59, 0.75);
}
.cb-card-value { font-size: 1.8rem; font-weight: 800; line-height: 1.1; }
.cb-card-label { font-size: .75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .06em; }
.cb-detail-table th, .cb-detail-table td { white-space: nowrap; }
@media print {
  .cb-no-print { display: none !important; }
}

.cb-report-filter {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(2, 6, 23, 0.92);
  color: #e2e8f0;
  border-radius: .85rem;
  padding: .65rem .75rem;
  font-size: .78rem;
  outline: none;
}
.cb-report-filter:focus {
  border-color: rgba(34, 211, 238, .65);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, .12);
}
.cb-report-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: rgba(15, 23, 42, 0.7);
  color: #cbd5e1;
  border-radius: .85rem;
  padding: .65rem .75rem;
  font-size: .78rem;
}
