.finance-design-plate-card { min-height: calc(100vh - 132px); }
.finance-design-plate-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.finance-design-plate-filters { grid-template-columns: minmax(250px, 2fr) repeat(4, minmax(120px, 1fr)) auto; }
.finance-design-plate-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 10px;
  margin: 14px 0 8px;
}
.finance-design-plate-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #dbe5f1;
  border-radius: 7px;
  background: #f8fafc;
}
.finance-design-plate-summary span { color: var(--muted); font-size: 12px; }
.finance-design-plate-summary strong { color: var(--text); font-size: 17px; font-variant-numeric: tabular-nums; }
.finance-design-plate-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 12px 0 8px;
  color: var(--muted);
  font-size: 12px;
}
.finance-design-plate-table-wrap { max-height: calc(100vh - 310px); }
.finance-design-plate-table { min-width: 1650px; }
.finance-design-plate-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  white-space: nowrap;
}
.finance-design-plate-table td { vertical-align: middle; }
.finance-design-plate-table .date-cell { min-width: 100px; white-space: nowrap; }
.finance-design-plate-table input[type="text"],
.finance-design-plate-table input[type="number"],
.finance-design-plate-table select {
  width: 100%;
  min-width: 100px;
  height: 32px;
  padding: 5px 7px;
  border: 1px solid #d6dfeb;
  border-radius: 6px;
  background: #fff;
}
.finance-design-plate-table .design-file-cell { min-width: 220px; max-width: 280px; white-space: normal; line-height: 1.45; }
.finance-design-plate-table .note-input { min-width: 220px; }
.finance-design-plate-table .money-cell { text-align: right; font-variant-numeric: tabular-nums; }
.finance-design-plate-check { display: inline-flex; align-items: center; justify-content: center; width: 100%; }
.finance-design-plate-check input { width: 18px; height: 18px; accent-color: #2563eb; }
.finance-design-plate-row.settled { background: #f3f8ff; }
@media (max-width: 1280px) {
  .finance-design-plate-filters { grid-template-columns: repeat(3, minmax(150px, 1fr)); }
  .finance-design-plate-summary { grid-template-columns: repeat(2, minmax(150px, 1fr)); }
  .finance-design-plate-table-wrap { max-height: none; }
}
