/* Results list rendered under each [blm_league_table] */

.blm-league-results {
  margin: 0 0 2em;
}

.blm-league-results .blm-results-key {
  text-align: center;
  font-size: 0.85em;
  font-style: italic;
  margin: 0 0 0.25em;
}

.blm-league-results .blm-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  column-gap: 0.75em;
  line-height: 1.3;
}

.blm-league-results .blm-result {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  align-items: baseline;
  list-style: none;
  margin: 0;
  padding: 0.3em 0;
  border-bottom: 1px solid #ddd;
}

/* Results past the "results_shown" limit, hidden until "View more" is clicked */
.blm-league-results.blm-collapsed .blm-result-extra {
  display: none;
}

.blm-league-results .blm-result-home {
  text-align: right;
}

.blm-league-results .blm-result-score {
  text-align: center;
  white-space: nowrap;
  font-weight: bold;
}

/* Walkover and deduction lines under a result */
.blm-league-results .blm-result-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.9em;
  font-style: italic;
}

.blm-league-results .blm-results-more {
  display: block;
  margin: 0.75em auto 0;
  padding: 0.5em 1.25em;
  background: #1f4e79;
  color: #fff;
  border: none;
  border-radius: 0;
  font-weight: bold;
  cursor: pointer;
  box-shadow: none;
  text-shadow: none;
}

.blm-league-results .blm-results-more:hover,
.blm-league-results .blm-results-more:focus {
  background: #163a5c;
  color: #fff;
}
