.season-selector {
    margin: 20px 0;
    text-align: center;
}

.season-selector select {
    padding: 8px 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin: 5px auto;
    width: 190px;
}

.season-selector button {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #587e6b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    height: 38px;
}

.season-selector button:hover {
    background-color: #45a049;
}

.current-season {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: beige;
}

.form-indicator {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    margin: 0 2px;
    font-weight: bold;
}

.form-W {
    background-color: #4CAF50;
    color: white;
}

.form-D {
    background-color: #FFC107;
    color: black;
}

.form-L {
    background-color: #f44336;
    color: white;
}

.match-detail {
    position: absolute;
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    z-index: 1000;
    font-size: 14px;
}

.table-description {
    align-items: center;
    justify-content: center;
    text-align: justify;
    display: flex;
    color: beige;
    margin: 0 15px;
}

table.rounds-table,
table.standings-table{
  width:auto;
  color: beige;
  margin-bottom: 20px;
}

@media only screen and (max-width: 585px) {
        .form, 
        .form-column {
            display: none !important;
        }

  .rounds-table,
  .standings-table {
font-size: 12px
}
  h1.standing-table-header{
    font-size:25px;
  }
    }