.accordion-trigger {
  width: 100%;
  display: flex;
  background-color: rgb(250, 250, 250);
  color: rgb(0, 0, 0);
  padding: 24px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  text-align: left;
  border: none;
  gap: 16px;
  justify-content: space-between;
  cursor: pointer;
}
.accordion-icon {
  transition: transform 0.5s;
}
.accordion-item[open] .accordion-icon {
  transform: rotate(45deg);
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
--t4-table-color-type: var(--t4-table-striped-color);
--t4-table-bg-type: var(--t4-dark-border-subtle);
}