.container3 {
    max-width: 1000px;
    margin: auto;
    padding: 10 rem;
    box-sizing: border-box;
    box-shadow: #ffffff;
    
}

.league-table {
    background-color: rgba(41, 39, 38, 0.555);
    color: white;
    border: 1px solid #f00000;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: #ff4800ef;
}

.header1 {
    text-align: center;
    margin-bottom: 1rem;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #1a0700;
    color: white;
    text-align: left;
}

td {
    padding: 0.45rem;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

th {
    text-transform: uppercase;
    font-weight: bold;
}

.team-info {
    display: flex;
    align-items: center;
}

.team-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .container3 {
        padding: 0.1rem;
        max-width: 900px;
    }
    .header1 {
        text-align: center;
        margin-bottom: 1rem;
    }
    th, td {
        padding: 0.1rem;
    }
}
