.sr-only {
  position: absolute !important;
  width: 1px; 
  height:1px;
  padding:0;
  margin: -1px;
  overflow: hidden; 
  clip: rect(0 0 0 0);
  white-space: nowrap; 
  border: 0;
}
.custom-table__table-search { 
  margin-bottom: 20px; 
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-table__table-search-input {
  padding: 10px;
  border: 1px solid rgb(220, 224, 233);
  border-radius: 3px;
  font-size: 14px;
  background: rgb(255, 255, 255);
  color: rgb(170, 176, 190);
  font-weight: 300;
  transition: 0.2s;
  min-width: 220px;
}
.custom-table__table-search-input:focus {
  color: rgb(92, 96, 107);
  border-color: rgb(92, 96, 107);
}
.custom-table__table-search-input:focus-visible {
  outline-width: 0; !important;
}
.custom-table__table-wrap { 
  margin-bottom: 30px; 
  width: 100%; 
  overflow: hidden; 
}
table { 
  width: 100%; 
  border-collapse: collapse; 
  min-width: 320px; 
  border-radius: 5px;
  overflow: hidden;
}
.custom-table__table-body-row-data-button {
  padding: 10px 20px;
  display: flex;
  width: max-content;
  line-height: 1 !important;
  text-align: center;
  text-decoration: none;
}
.custom-table__table-body-row-data-button:hover {
  text-decoration: none;
}
/* no-results cell style */
.no-results-cell {
  text-align: center;
  padding: 18px;
  font-weight: 600;
  color: #666;
  background: transparent;
}
.custom-table__table-body-row-data__mobile {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.custom-table__table-body-row-data__mobile-heading {
  font-weight: 700;
}
.custom-table__table-heading-row-header,
.custom-table__table-body-row-data {
  width: 300px;
  max-width: 300px;
}
.custom-table__table-heading-row-header:first-child,
.custom-table__table-body-row-data:first-child {
  width: auto;    
}
.custom-table__table-heading-row-header:first-child .custom-table__table-heading-row-header__text,
.custom-table__table-body-row-data:first-child .custom-table__table-body-row-data__desktop {
  width: 300px;
  margin: 0 auto;
  justify-content: flex-start;
}
.custom-table__table-heading-row-header:last-child .custom-table__table-heading-row-header__text,
.custom-table__table-body-row-data:last-child .custom-table__table-body-row-data__desktop {
  width: 200px;
  margin: 0 auto;
}
.custom-table__table-heading-row-header__text,
.custom-table__table-body-row-data__desktop {
  width: 100px;
  margin: 0 auto;
  display: flex !important;
  justify-content: center;
}

@media (max-width: 330px) {
  .custom-table__table-search {
    flex-direction: column;
    align-items: flex-start;
  }
  .custom-table__table-search-input {
    min-width: 100%;
    width: 100%;
  }
}

@media (max-width: 230px) {
  .custom-table__table-body-row-data__mobile {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
}