.container-comp {
            background-color: #FF7d7d;
            font-size: 0.8em;
            margin: 0 auto;
            width: 100%; /* Let the div expand based on the content width */
            padding: 0px 0px 5px 0px;
}
        .round {
            margin: 10px 0;
            border: 0px solid #C60000;
            padding: 2px 0px 0px 0px;
            border-radius: 5px;
        }
        .date {
            text-align: center;
            font-weight: bold;
            margin: 5px 0;
        }
        .fixture {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2px 0;
        }
        .team {
            display: flex;
            align-items: center;
            width: 40%;
        }
        .team img {
            width: 15px;
            height: auto;
            padding: 1px;
        }
        .team-name {
            font-weight: bold;
            padding: 0 10px;
            font-size: 0.9em; 
         
        }
        .match-box {
            background-color: #FFB90F;
            border-radius: 5px;
            text-align: center;
            padding: 0px;
            height: 20px;
            line-height: 20px;
            width: 20%;
        }
 .standings {
    font-size: 0.8em;
    display: flex;
    justify-content: center; /* Center the standings div */
    margin: 5px  auto; /* Optional: add some margin for spacing */
    width: 85%; /* Set the width to 70% of the container */
    background-color: #ddd;
    padding: 3px 0px 0px 0px; 
    border: 2px solid #C60000; 
}

.standings-table {
   
    /* Removed the width property */
    margin: 0px auto; /* Center the table inside the standings div */
}

.standings-header, 
.standings-row {
    display: table-row; /* Row display */
    
}

.standings-cell {
    display: table-cell; /* Cell display */
    padding: 2px 1px;
    vertical-align: middle; /* Align content vertically */
    text-align: center;
}       


.highlight-round-1 {
    background-color: #ffcccc; /* Light red for Round 1 */
}

.highlight-round-2 {
    background-color: #ccffcc; /* Light green for Round 2 */
}