.account-match-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

/* Keep table header visible */
.account-match-table thead {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.account-match-table tbody {
  display: block;
  max-height: 450px; /* ✅ FIXED HEIGHT */
  overflow-y: auto;  /* ✅ SCROLLBAR */
  width: 100%;
}

/* Ensure rows align with header */
.account-match-table tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.account-match-table th,
.account-match-table td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  word-wrap: break-word;
}

.account-match-table select {
  width: 100%;
  padding: 6px;
}

.account-match-table th {
  font-weight: 600;
  background-color: #f5f5f5;
}
