/*////////////////////////////////////////////////////////////////////
// Copyright 2025 (c) Yanko Lemoine
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0
// which is available at https://www.eclipse.org/legal/epl-2.0/
//
// SPDX-License-Identifier: EPL-2.0
////////////////////////////////////////////////////////////////////*/

#teams_table {
    table {
        height: 30vh;
        width: 80vw;
    }

    th, td {
        padding: 15px 10px;
    }
}

#competition_images .images {
    display: flex;
    flex-wrap: wrap;
    width: 80vw;
    
    justify-content: space-between;
}

#competition_images {
    img {
        border-radius: 10%;
        width: 49%;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 680px) {
    #teams_table {
        table {
            width: 80vw;
        }

        th, td {
            font-size: 2vw;
            padding: 15px 5px;
            min-width: 1em;
        }

    }

    #competition_images img {
        width: 100%;
    }   
}