.table-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* Prevents stretching */
  gap: 25px; /* Space between tables */
}

.table-standings {
    border-collapse: collapse;
    font-family: Aptos, "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
    /*font-size: 12px;*/
    width: auto;
    height: auto;
    align-self: flex-start;
    min-width: 200px;
}

.table-standings td {
    vertical-align: middle;
    padding: 2px 5px 2px 5px;
    white-space: nowrap;
}

.table-standings th {
    border-bottom: 1px solid black;
    padding: 2px 5px 2px 5px;
    background-color: #ffffff;
}

.logo-standing {
	  width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.last10 {
    vertical-align: middle;
	  width: 15px;
    height: 15px;
}

.team-standing {
    font-weight: bold;
    vertical-align: middle;
}

.team-record {
    vertical-align: middle;
    color: #595959;
}
.gb-column {
	  font-weight: bold;
    color: #595959;
}

.status-column {
    font-weight: bold;
    font-style:italic;
    color: #595959;
    text-align: center;
}

.playoff-status {
    display: inline-block;
    width: 38px;
    padding-left: 2px;
    padding-right:2px;    
}

.dl {
    background-color: #8dd874;
}

.wc1 {
    background-color: #a7e193;
}

.wc2 {
    background-color: #c0eab1;
}

.wc3 {
    background-color: #d8f2cf;
}

.eliminated {
    color: white;
    background-color: #FF5050;
}

.odd {
  background-color: #ffffff;
  border-right: #f2f2f2 2px solid;
  border-left: #f2f2f2 2px solid;
}

.even {
  background-color: #f2f2f2;
  border-right: #f2f2f2 2px solid;
  border-left: #f2f2f2 2px solid;
}

/* Hide the element on screens smaller than 768px */
@media (max-width: 1615px) {
  .hidden-on-medium {
    display: none;
  }
}

@media (max-width: 1300px) {
  .hidden-on-small {
    display: none;
  }
}

@media (max-width: 946px) {
  .table-standings {
    font-size: 10px;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .playoff-status {
    display: inline-block;
    width: 30px;
    padding-left: 1px;
    padding-right: 1px;  
  }
}