:root {
  --table-head-color: #3498db;
  --table-sub-heading-color: #999999;
  --table-even-cell-color : #cdcdcd;
  --check-mark-color : #40833b;
  --cross-color : #e71f1f;
}

.table-container {
  padding: 10px 0;
}

.aztech-table .rounded-border-left {
  border-top-left-radius: 10px;
}

.aztech-table .rounded-border-right {
  border-top-right-radius: 10px;
}

.aztech-table .check {
  color: var(--check-mark-color);
}

.aztech-table .cross {
  color : var(--cross-color);
}

.aztech-table {
  border-spacing: 0;
}

.aztech-table td {
  padding: 4px;
}

.aztech-table td,
.aztech-table th {
  border: 1px solid #fff;
}

.aztech-table, th, td {
  border: none;
}



.aztech-table tr.table-head th {
  background: var(--table-head-color);
  color: #fff;
}


.aztech-table tr th {
  background: var(--table-sub-heading-color);
  color: #000;
  font-weight: bold;
  padding: 10px;
}

.aztech-table tr:nth-child(odd) {
  background: var(--table-even-cell-color);
}