table {
  border-radius: 10px;
  font-family: var(--font-family-body);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  margin: var(--space-lg) 0;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid var(--greyLighter);
}
.table a {
  color: var(--textColor);
}
.table > :not(caption) > * > * {
  padding: var(--space-lg) var(--space-3xl);
}
.table,
.table th,
.table td,
table th,
table td {
  border: 1px solid var(--greyLighter);
}
.table-borderless tr td {
  border: none;
}
.table-borderless th,
.table-borderless td {
  border: none !important;
}
.table-blank {}
.table-blank tr {
  background-color: transparent;
}
.webform-likert-table[data-likert-answers-count="2"] th:first-child {
  width: 75%;
}
.webform-likert-table[data-likert-answers-count="2"] th {
  width: 12.5%;
}
.webform-likert-table tr {
  background: transparent;
  background-color: rgba(72, 81, 99, .06);
  border: none;
}
.webform-likert-table td,
.webform-likert-table th {
  border: none;
}
.webform-likert-table thead th {
  color: var(--white) !important;
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-bold);
  text-align: center;
  background-color: var(--greyDarker);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--greyCharcoal);
}

.webform-likert-table thead th:first-child {
  text-align: left;
}

.webform-likert-table tr.odd {
  background-color: var(--greyLight);
}
.webform-likert-table tr.even {
  background-color: var(--greyLighter);
}

/* Fix sticky header positioning after patches */
.webform-likert-table.sticky-header thead {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ensure proper spacing when header is sticky */
.webform-likert-table.sticky-header tbody tr:first-child td {
  border-top: none;
}
