/* Rosters Table */
.rosters-content {
  width: 100% !important;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 10px;
}
.rosters-content .last-updated-date {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  margin-right: 16px;
  gap: 4px;
}
.rosters-table {
  width: 100%;
  max-height: 600px;
  overflow: auto;
  position: relative;
}
.rosters-table table {
  width: 100%;
  text-align: left;
  border-spacing: 0;
  border: none;
  border-left: 1px solid #858585;
  border-right: 1px solid #858585;
}
.rosters-table table thead {
  position: sticky;
  top: 0;
}
.rosters-table table tr {
  border: none;
  height: 22px;
}
.rosters-table table tr:nth-child(odd) {
  background-color: #efefef;
}
.rosters-table table tr:nth-child(even) {
  background-color: #fff;
}
.rosters-table table tr td {
  border: none;
  padding: 5px;
  border-bottom: 1px solid #858585;
  border-right: 1px solid #00330022;
  max-width: 150px;
}
.rosters-table table tr th {
  border: none;
  padding: 5px;
  font-weight: bold;
  background-color: #2e2e2e;
  color: #fff;
}

.rosters-disclaimer {
  font-size: 14px;
  line-height: 150%;
  margin-top: 12px;
  margin-bottom: 24px;
}
.rosters-disclaimer .title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 12px;
}

.rosters-table .info-text {
  font-weight: 600;
  text-align: center;
}

.rosters-content .filter-btn {
  background: none;
  border: none;
  outline: none;

  margin: 2px;
  padding: 5px;
  font-weight: 600;
  cursor: pointer;
  text-transform: capitalize;
}

.rosters-content .filter-btn:hover {
  color: #004bbb;
}

.rosters-content .filter-btn.active {
  color: #004bbb;
  text-decoration: underline;
}

.rosters-content .rosters-filters {
}

.rosters-content .rosters-filters .filter-label {
  font-weight: bold;
}
