.tour-circle {
    display: flex;
    justify-content: center;
    padding: 24px;
    background-color: white;
    border-radius: 50%;
    aspect-ratio: 1;
    width: fit-content;
    color: black;
}

.tour-circle>span {
    font-size: 28px;
    font-weight: bold;
}

/* CSS for section section:TeamStats */
#section-team-stats {
    display: flex;
    justify-content: center;
}

.stats-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 3fr repeat(9, 1fr);
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    background-color: #e9ecef;
    font-size: 13px;
    line-height: 1.2;
}

.stats-row.header {
    border-radius: 8px;
    font-weight: 700;
    color: #000000;
}

.stats-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* border-radius: 8px; */
    /* overflow: hidden; */
}

.stats-body .stats-row:first-child {
    border-radius: 8px 8px 0 0;
}
.stats-body .stats-row:last-child {
    border-radius: 0 0 8px 8px;
}

/* .stats-clip {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
} */

/* First row in body usually doesn't need top radius if container handles it, 
   but here design shows individual rows or a block. 
   Assuming standard table look within the container. */

.cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.col-team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-name {
    font-weight: 500;
}

/* Flag Merging Styles */
.flag-icon {
    /* position: relative;
    width: 17px; */
    /* height: 25px; */
    height: 100%;
    /* flex-shrink: 0; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
}
/* Flag Merging Styles */
.flag-icon > img {
    height: 25px;
}

/* Text Colors */
.text-green {
    color: #5bb233;
}

.text-red {
    color: #e63946;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-container {
        overflow-x: auto;
    }

    .stats-row {
        min-width: 800px;
        /* Ensure table doesn't squash on mobile */
    }
}