.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
  border-radius: 4px;
  width: 100%;
}

@keyframes skeleton-loading {
  0% {
    background-color: #c2cfd6;
  }
  100% {
    background-color: #f0f3f5;
  }
}
:host {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  box-sizing: border-box;
  min-width: 600px;
}

thead tr {
  height: 52px;
}
thead tr td {
  text-align: left;
  padding-left: 8px 16px;
  min-width: 40px;
}

tbody tr {
  height: 52px;
}

tr {
  border-bottom: 1px solid #D4D4D4;
}

.selected {
  background-color: #ebfbfc;
}

th {
  text-align: left;
  padding: 8px 0;
  min-width: 40px;
}

td {
  text-align: left;
  padding: 16px 0;
  min-width: 40px;
}

.cell-spacing a.table-link {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}
.cell-spacing a.table-link:hover {
  text-decoration: underline;
}

.skeleton {
  height: 24px;
  display: block;
}

.header-typography, .cell-typography {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
}

.header-typography {
  font-weight: 600;
}

.cell-typography {
  font-weight: normal;
  color: #212121;
}

.clickable {
  cursor: pointer;
}

.pagination-footer {
  margin-top: 12px;
  padding: 8px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #4c4c4c;
}

.pagination-text {
  opacity: 0.75;
}

.pagination-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-buttons tttx-button-v2_1_9_108 {
  --button-bg: #ffffff;
  --button-border: #d4d4d4;
  --button-color: #525252;
  --button-bg-hover: #f5f5f5;
  --button-border-hover: #d4d4d4;
  --button-bg-active: #f5f5f5;
  --button-border-active: #d4d4d4;
  --button-focus-outline: none;
  --button-bg-disabled: #e5e5e5;
  --button-color-disabled: #737373;
  --button-border-disabled: #d4d4d4;
  --button-opacity-disabled: 1;
}

.nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d5d5d5;
  cursor: pointer;
  font-size: 14px;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.15s ease, border 0.15s ease;
}
.nav-btn:hover:not(:disabled) {
  background: #f0f0f0;
}
.nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

tbody tr:hover {
  background-color: #f5f5f5;
}