@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.4;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6, li, dl, dt, blockquote {
  overflow-wrap: break-word;
}

.noticeSuccess {
  color: green;
  font-weight: bold;
}

.noticeFailure {
  color: red;
  font-weight: bold;
}

.noticeCaution {
  color: yellow;
  font-weight: bold;
}

.noticeMuted {
  color: gray;
  font-weight: bold;
}

body {
  font-family: "Courier New", Courier, monospace;
  background-color: #222;
  color: #dcd4c2;
  font-size: 1em;
  margin: 1rem;
}

body > header {
  margin-bottom: 1rem;
}

#logoRowContainer > h1 {
  font-size: 3.2rem;
}

body > footer {
  margin: 2rem 0;
}

body > footer > hr {
  margin: 1rem 0;
  width: 50rem;
  color: #ddd;
}

body > footer > h3 {
  margin: 0.2rem 0;
}

a, a:visited, a:active {
  text-decoration: none;
  color: rgb(29, 118, 190);
}

a:hover {
  color: white;
  background-color: rgb(29, 118, 190);
}

.alert {
  color: red;
}

.inline {
  display: inline;
}

.textCentered {
  text-align: center;
}

.imageCentered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.textRight {
  text-align: right;
}

.textGrayed {
  color: #bbb;
}

.subLink {
  font-size: 0.7rem;
}

ol {
  padding-left: 3rem;
}

.textUnderlined {
  text-decoration: underline;
}

.textBolded {
  font-weight: bold;
}

#navToggle, #navToggleLabel, #navPop {
  display: none;
}

@media (max-width: 1250px) {
  /* … */
}
@media (max-width: 1000px) {
  /* … */
}
@media (max-width: 750px) {
  #logoRowContainer > h1 {
    font-size: 2rem;
  }
  #logoBall {
    width: 22px;
    height: 22px;
  }
  #logoRowContainer {
    display: grid;
    grid-template-columns: 5fr 1fr;
  }
  #navToggleLabel {
    display: inline;
    justify-self: end;
    font-size: 1.6rem;
  }
  #navToggleLabel:hover {
    cursor: pointer;
  }
  .navToggle:checked ~ #navPop {
    display: block;
  }
  .navPopList > li {
    list-style: none;
    font-size: 1.5rem;
  }
  body > header > h2 {
    font-size: 1.5rem;
  }
  #widescreenNav {
    display: none;
  }
}
@media (max-width: 500px) {
  #logoRowContainer > h1 {
    font-size: 1.6rem;
  }
  #logoBall {
    width: 19px;
    height: 19px;
  }
  body > header > h2 {
    font-size: 1.2rem;
  }
}
.matchTable {
  margin: 0.2rem;
  width: 15rem;
  border: 1px solid #104570;
  font-size: 0.9rem;
}

.scoreTable {
  margin-left: 0.3rem;
}

.scoreCell {
  padding: 0.3rem;
}

@media (max-width: 1250px) {
  /* … */
}
@media (max-width: 1000px) {
  .matchTable {
    width: 15rem;
  }
}
@media (max-width: 750px) {
  .matchTable {
    width: 12rem;
  }
}
@media (max-width: 500px) {
  .matchTable {
    width: 10rem;
  }
}
.standingsTable {
  margin: 0.5rem;
  border-collapse: collapse;
}

.standingsTableTh, .standingsTableTd {
  border: 1px solid #ccc;
  padding: 0.5rem;
}

#playoffDate {
  font-size: 1.1rem;
}

#champion {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}

.callout {
  font-weight: bold;
  font-size: 1.3rem;
  color: #0dcc0c;
  border: 2px solid #0dcc0c;
  padding: 1rem;
}

#playoffs {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 2rem;
}

#schedule {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 2rem;
}

#standings, #teams, #subs {
  margin: 1rem 0;
}

#teamsTable {
  table-layout: fixed;
  border-collapse: collapse;
}

.teamsTableCell {
  padding: 0.2rem 0.7rem;
  border: 1px solid #ccc;
}

#sublistTable {
  border: 1px solid #ccc;
  border-collapse: collapse;
}

.sublistTableTh, .sublistTableTd {
  border: 1px solid #ccc;
  padding: 0.2rem 0.7rem;
}

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