.filter_bar {
  display: grid;
  grid-template-columns: minmax(170px, 1.2fr) repeat(4, minmax(130px, 1fr)) auto;
  gap: 9px;
  margin-bottom: 12px;
}
.filter_bar input, .filter_bar select {
  height: 36px;
  border: 1px solid var(--tc_border);
  border-radius: 14px;
  padding: 0 10px;
  font-size: 13px;
  background: #fbfdfb;
  min-width: 0;
}
.table_box {
  height: calc(100% - 102px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--tc_border);
  border-radius: 16px;
  background: white;
}
.table_scroll { max-height: 100%; overflow: auto; }
.tc_table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tc_table th {
  height: 38px;
  text-align: left;
  padding: 0 10px;
  color: var(--tc_muted);
  font-size: 13px;
  border-bottom: 1px solid var(--tc_border);
  background: #fbfdfb;
  position: sticky;
  top: 0;
  z-index: 1;
}
.tc_table td {
  height: 42px;
  padding: 0 10px;
  border-bottom: 1px solid #edf2ed;
  white-space: nowrap;
  vertical-align: middle;
}
.tc_table tr:last-child td { border-bottom: 0; }
.tc_table .title_col {
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1050px) {
  .filter_bar { grid-template-columns: 1fr 1fr; }
  .table_box { height: auto; max-height: 70vh; }
}
@media (max-width: 640px) {
  .filter_bar { grid-template-columns: 1fr; }
}
