:root {
  --theme-blue: #1374b1;
  --theme-secondary: #03b9ff;
  --theme-tertiary: #f5bb2d;
  --table-1-bg: url("../images/styles/style_table_purple.png");
  --table-2-bg: url("../images/styles/style_table_yellow.png");
  --table-3-bg: url("../images/styles/style_table_pink.png");
}

.table-style-1, .table-style-2, .table-style-3 {
  border-radius: 10px;
  width: 100%;
}
.table-style-1 tr:first-child td:first-child, .table-style-2 tr:first-child td:first-child, .table-style-3 tr:first-child td:first-child {
  border-top-left-radius: 10px;
}
.table-style-1 tr:last-child td:first-child, .table-style-2 tr:last-child td:first-child, .table-style-3 tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.table-style-1 tr:first-child td:last-child, .table-style-2 tr:first-child td:last-child, .table-style-3 tr:first-child td:last-child {
  border-top-right-radius: 10px;
}
.table-style-1 tr:last-child td:last-child, .table-style-2 tr:last-child td:last-child, .table-style-3 tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.table-style-1 td, .table-style-2 td, .table-style-3 td {
  padding: 0.5rem;
}

table.table-style-1 {
  border-collapse: separate !important;
}
table.table-style-1 tr:nth-child(1) {
  background-color: var(--theme-blue);
  color: white;
}
table.table-style-1 tr:nth-child(n+1):not(:first-child) td {
  background-color: rgba(255, 255, 255, 0.5);
}
table.table-style-1 tr:nth-child(2n+1):not(:first-child) td {
  background-color: #deeaff;
}

table.table-style-2 {
  border-collapse: separate !important;
  border: 2px solid #e4e4e4;
}
table.table-style-2 tr:nth-child(1) {
  background-color: var(--theme-secondary);
  background-size: cover;
  color: white;
}
table.table-style-2 tr:nth-child(n+1):not(:first-child) td {
  background-color: rgba(255, 255, 255, 0.5);
}
table.table-style-2 tr:nth-child(2n+1):not(:first-child) td {
  background-color: #d8f4ff;
}

table.table-style-3 {
  border-collapse: separate !important;
}
table.table-style-3 tr:nth-child(1) {
  background-color: var(--theme-tertiary);
  color: white;
}
table.table-style-3 tr:nth-child(n+1):not(:first-child) td {
  background-color: white;
}
table.table-style-3 tr:nth-child(2n+1):not(:first-child) td {
  background-color: #fff8f0;
}

table.table-style-4 {
  border-collapse: separate !important;
  width: 100%;
}
table.table-style-4 td {
  padding: 15px;
  margin-bottom: 0;
}
table.table-style-4 tr:nth-child(odd) td {
  background-color: var(--theme-blue);
  color: white;
  border-bottom: 3px solid #0f527c;
  display: flex;
  align-items: center;
  font-weight: bold;
}
table.table-style-4 tr:nth-child(odd) td svg {
  fill: white;
}
table.table-style-4 tr[aria-expanded=true] svg {
  transform: rotate(180deg);
}
table.table-style-4 tr:nth-child(even) td {
  background-color: #ebf7ff;
}

/*# sourceMappingURL=common.css.map */
