.tournamentMetadataValues {
	margin-top: 15px;
	margin-bottom: 15px;
}
.tournamentMetadataValue, .tournamentGameFormat {
	display: inline-block;
	margin-left: 20px;
	margin-right: 20px;
}
.hidden {
	display: none;
}
.inactivePlayer {
	color: grey;
}
#TournamentInfoDiv {
	text-align: center;
}
#TournamentInfoDiv ul, ol {
	text-align: left;
    list-style-position: inside;
    width: fit-content;
    margin: auto;
}
.tournamentDescriptionP span {
	margin-left: 20px;
	margin-right: 20px;
}
.maxElem {
	color: green;
}

.maxElemFull {
	color: red;
}
.tournamentTag {
	color: green;
	position: relative;
}
.tagInfo {
	border: 1px solid black;
	border-radius: 26px;
	font-size: 10px;
	width: 15px;
	height: 15px;
	display: inline-block;
	margin-left: 2px;
	background-color: yellow;
	text-decoration: none;
	vertical-align: top;
	font-weight: bold;
}
.tagHoverDescription {
	display: none;
	position: absolute;
	top: 20px;
	border: 1px solid black;
	border-radius: 5px;
	background-color: yellow;
	color: black;
	z-index: 1000;
}
.tagInfo:hover + .tagHoverDescription {
	display: block;
}

/* maps grid discussion fixes */

div#TournamentMaps {
    width: 100%;
}
.tournamentMap_row {
    min-height: fit-content;
}
.tournamentMap_row.tournamentMap_row2 {
    font-size: 13px; /* Map's Glyph Names */
	text-align: center;
}
.tournamentMap_row.tournamentMap_row3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
button#SubmitArmyButton {
    margin-bottom: 30px;
}

/* mobile view pairings table */

@media (max-width: 720px) {
  .tournament-round {
    max-width: 100%;
    overflow-x: auto;
}
  .tournament-round td, .tournament-round th {
      font-size: 12px;
      min-width: 100px;
      word-break: break-word;
  }
  .tournament-round button {
    min-width: 75px;
    font-size: 12px;
  }
}

/* mobile view standings table */

@media (max-width: 720px) {
  table#Standings tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  table#Standings thead th:last-child,
  table#Standings thead th:first-child {
    display:none;
  }   
  table#Standings td:last-child {
	width: 100%;
    padding: 10px 10px 20px 10px;
    border-top: 1px solid var(--bs-table-bg);
    font-size: 14px;
  }
   table#Standings tbody td:first-child {
     padding-left:10px;
     flex: 0;
     min-width:50px;
  }
  table#Standings td:not(:last-child) {
    flex: 1;
    border-bottom: 0;
    padding: 10px 0 0 0;
    display: flex;
    justify-content: space-evenly;
  }
  table#Standings td:nth-child(1), 
  table#Standings td:nth-child(2) {
      justify-content: flex-start;
  }
  table#Standings thead tr {
    background-color: var(--bs-table-bg);
    border-bottom: 2px solid var(--bs-table-border-color);
    padding: 10px 10px 10px 30px;
  }
  table#Standings th.text-center {
        border: 0px;
  }
  table#Standings thead th {
    border: none;
  }
  td.text-start > div {
    padding-bottom: 8px;
    line-height: 1.25;
  }
}