.customerTable .customerRecord { display:block; padding:0; overflow:hidden; }
.customerSummary { width:100%; display:grid; grid-template-columns:1fr auto auto; align-items:center; gap:15px; border:0; background:white; color:inherit; padding:16px 18px; text-align:left; }
.customerSummary:hover { background:#f7f9f5; }
.customerSummary > span:first-child { display:flex; flex-direction:column; gap:4px; }
.customerSummary small,.customerVoucher small { display:block; color:#69736d; margin-top:3px; }
.customerDocumentsLabel { background:#edf2e8; color:#31513c!important; border-radius:999px; padding:6px 10px; font-size:12px; font-weight:700; }
.customerChevron { font-size:22px; transition:transform .2s; }
.customerSummary[aria-expanded="true"] .customerChevron { transform:rotate(180deg); }
.customerVouchers { border-top:1px solid var(--line); background:#f7f9f5; padding:10px 18px; }
.customerVoucher { display:grid; grid-template-columns:145px 1fr auto 100px; align-items:center; gap:14px; padding:12px 0; border-bottom:1px solid #e0e5df; }
.customerVoucher:last-child { border-bottom:0; }
.voucherKind { color:#31513c!important; font-weight:700; }
.customerVoucher a { color:#1f5138; font-weight:700; text-decoration:none; text-align:right; }
.customerVoucher a:hover { text-decoration:underline; }
@media(max-width:700px) {
  .customerSummary { grid-template-columns:1fr auto; }
  .customerDocumentsLabel { grid-column:1; }
  .customerChevron { grid-column:2; grid-row:1/3; }
  .customerVoucher { grid-template-columns:1fr auto; }
  .voucherKind { grid-column:1/-1; }
  .customerVoucher a { grid-column:2; }
  .customerVouchers { padding:8px 14px; }
}
