.debtor-name {
  border: 0;
  background: transparent;
  padding: 0;
  color: #d12530;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: #f4a5aa;
  text-underline-offset: 4px;
  cursor: pointer;
}

.debtor-name:hover { color: #a91520; }

.debt-detail-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #ffd0d3;
  border-radius: 16px;
  background: #fff2f3;
  color: #8f2730;
}

.debt-detail-summary strong { color: #d12530; font-size: 21px; }
.debt-detail-list { display: grid; gap: 10px; }

.debt-lot {
  padding: 13px;
  border: 1px solid #dce6ed;
  border-radius: 16px;
  background: #fff;
}

.debt-lot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.debt-lot-head time { color: #26394f; font-size: 13px; font-weight: 800; }
.debt-lot-head strong { color: #d12530; }

.debt-lot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 11px;
}

.debt-lot-grid div { padding: 8px; border-radius: 10px; background: #f5f8fa; }
.debt-lot-grid span { display: block; color: #7b8b9b; font-size: 10px; }
.debt-lot-grid strong { display: block; margin-top: 3px; color: #26394f; font-size: 13px; }
.debt-lot-note { margin: 9px 1px 0; color: #718196; font-size: 11px; }
