.ids-table {
  table-layout: fixed;
  border-collapse: separate;
  border-radius: var(--IDS-TABLE__BORDER-RADIUS);
  border-top: var(--IDS-TABLE__BORDER-TOP);
  border-left: var(--IDS-TABLE__BORDER-LR);
  border-right: var(--IDS-TABLE__BORDER-LR);
  border-bottom: var(--IDS-TABLE__BORDER-BOTTOM);
  border-spacing: 0;
  overflow: hidden;
}
.ids-table thead th {
  background-color: var(--IDS-TABLE__HEAD-BACKGROUND-COLOR);
  text-align: start;
  border-bottom: var(--IDS-TABLE__HEAD-BORDER-BOTTOM);
}
.ids-table th,
.ids-table td {
  padding: 0.75rem 1.25rem;
}
.ids-table th,
.ids-table td {
  border-left: var(--IDS-TABLE__CELL-BORDER);
  border-top: var(--IDS-TABLE__CELL-BORDER);
  color: var(--IDS-TABLE__CELL-COLOR);
}
.ids-table thead tr:first-child th {
  border-top: 0;
}
.ids-table tbody tr:first-child th,
.ids-table tbody tr:first-child td {
  border-top: var(--IDS-TABLE__FIRST-ROW-CELL-BORDER-TOP);
}
.ids-table tbody tr td:first-child,
.ids-table thead tr th:first-child {
  border-left: 0;
}
.ids-table tbody tr th {
  border-bottom: 0;
  text-align: left;
  background-color: var(--IDS-TABLE__HEAD-BACKGROUND-COLOR);
}