
table.zebra {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #7d867b;
  border-radius: 6px;
  max-width: 98vw;
}

.zebra th {
  background: white;
  color: #387e29;
}

.zebra td, .zebra th {
  border-left: 1px solid #7d867b;
  border-top: 1px solid #7d867b;
  padding: 3px 8px;
}

.zebra thead tr:first-child th {
  border-top: none;
}

.zebra td:first-child, .zebra th:first-child {
  border-left: none;
}

.zebra td.rowspan {
  display: none;
}

.zebra thead tr:first-child > :first-child {
  border-radius: 6px 0 0 0;
}

.zebra thead tr:first-child > :last-child {
  border-radius: 0 6px 0 0;
}

.zebra thead tr:first-child > :only-child {
  border-radius: 6px 6px 0 0;
}

.zebra > :last-child tr:last-child > :first-child {
  border-radius: 0 0 0 6px;
}

.zebra > :last-child tr:last-child > :last-child {
  border-radius: 0 0 6px 0;
}

.zebra > :last-child tr:last-child > :only-child {
  border-radius: 0 0 6px 6px;
}

.zebra tbody tr:nth-child(even) {
  background: white;
}

.zebra tbody tr:nth-child(odd) {
  background: #bdd6bb;
}

.zattr tbody th:first-child {
  background: inherit;
  font-weight: bold;
  color: black;
  text-align: right;
  padding-left: 8px;
  padding-right: 8px;
}

.zattr tbody td:last-child {
  padding-left: 8px;
  padding-right: 8px;
}

.zcenter tbody th, .zcenter tbody td {
  text-align: center;
}

.zebra tbody td.wrapper {
  white-space: normal;
  word-break: break-all;
  word-wrap: break-word;
}


