.top-section {
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.heading {
  color: #192952;
  font-size: 32px;
  font-weight: bold;
}

.grade-badge, .grade-badge img {
  width: 34.8px;
  height: 40px;
}

#content-menu {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  margin-top: 20px;
  margin-bottom: 10px;
}

.content-menu-item.selected {
  text-decoration: none;
  font-weight: bold;
}

.content-menu-item.selected::before {
  content: "[ ";
}

.content-menu-item.selected::after {
  content: " ]";
}

.content {
  padding: 20px;
}

#majors-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.heading-wrapper {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 20px;
}

.content-heading {
  color: #192952;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 6px;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid black;
}

.stat-table {
  min-width: 1024px;
}

thead {
  background-color: #192952;
  color: #eee;
}

th, td {
  text-align: right;
}

.more-rpad {
  padding-right: 10px;
}

th:first-child,
td:first-child {
  padding-left: 6px;
}

th:last-child,
td:last-child {
  padding-right: 6px;
}

th.nopadding {
  padding: 0;
}

#stat-table-traditional th.sm-col {
  width: 25px;
}

#stat-table-traditional th.md-col {
  width: 35px;
}

#stat-table-traditional th.lg-col {
  width: 42px;
}

#stat-table-traditional th.xlg-col {
  width: 68px;
}

#stat-table-advanced th {
  width: 849px/13;
}

#stat-table-contact th {
  width: 849px/14;
}

#stat-table-powerspeed th {
  width: 849px/11;
}

#stat-table-powerspeed th:nth-child(1),
#stat-table-contact th:nth-child(1),
#stat-table-advanced th:nth-child(1) {
  width: 45px;
}

#stat-table-powerspeed th:nth-child(2),
#stat-table-contact th:nth-child(2),
#stat-table-advanced th:nth-child(2) {
  width: 30px;
}

#stat-table-powerspeed th.lg-col,
#stat-table-contact th.lg-col,
#stat-table-advanced th.lg-col {
  width: 100px;
}

tbody tr:nth-child(odd) {
  background-color: white;
}

tbody tr:nth-child(even) {
  background-color: #eee;
}

tbody tr:nth-child(odd).selected-row {
  background-color: #dfdfb5;
}

tbody tr:nth-child(even).selected-row {
  background-color: #cecea7;
}

tfoot {
  font-weight: bold;
  border-top: 1px solid black;
}

.new-section {
  border-left: 1px solid #ccc;
}

th.new-section {
  border-color: #888;
}

#personal-details-table {
  width: 400px;
  float: left;
  margin: 0 20px 10px 0;
}

#personal-details-table td:first-child {
  width: 100px;
}

#personal-details-table td {
  padding: 10px;
  text-align: left;
  color: #1a1a1a;
}

:root {
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  table {
    border-color: black;
  }
  .heading, .content-heading {
    color: #888;
  }
  td {
    color: #888;
  }
  thead {
    background-color: black;
    color: #5c5c5c;
  }
  tbody tr:nth-child(odd) {
    background-color: #1a1a1a;
  }
  tbody tr:nth-child(even) {
    background-color: #111;
  }
  tbody tr:nth-child(odd).selected-row {
    background-color: #38381b;
  }
  tbody tr:nth-child(even).selected-row {
    background-color: #2f2f17;
  }
  tfoot {
    border-top: 1px solid #333;
  }
  .top-banner {
    color: #ccc;
  }
  #content-menu {
    background-color: #111;
    border-color: #5c5c5c;
  }
  #personal-details-table {
    width: 500px;
    float: left;
    margin: 0 20px 10px 0;
  }
  #personal-details-table td {
    color: #888;
    padding: 10px;
    text-align: left;
  }
  #article {
    color: #888;
  }
  .new-section {
    border-left: 1px solid #333;
  }
  th.new-section {
    border-color: #333;
  }
}
@media (hover: hover) {
  tbody tr:nth-child(odd):hover,
  tbody tr:nth-child(even):hover {
    background-color: #d2d28c;
    cursor: pointer;
  }
  tbody tr:nth-child(odd):hover.selected-row,
  tbody tr:nth-child(even):hover.selected-row {
    background-color: #b7b776;
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  tbody tr:nth-child(odd):hover,
  tbody tr:nth-child(even):hover {
    background-color: #525227;
  }
  tbody tr:nth-child(odd):hover.selected-row,
  tbody tr:nth-child(even):hover.selected-row {
    background-color: #434320;
  }
}
@media screen and (max-width: 767px) {
  .content {
    padding: 10px;
  }
  #bio {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #personal-details-table {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 811px) {
  #majors-stats {
    padding-right: 0;
    padding-left: 0;
  }
}/*# sourceMappingURL=player.css.map */