/* ****************************************************************************
 * Scratch game closings formatting                                           *
 *                                                                            *
 * Author: ETM                                                                *
 * Created: 20230113                                                          *
 *                                                                            *
 * *************************************************************************  */

/* All container */
.sgc_contain_all {
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:20px;
    justify-content:space-evenly;
    align-content:center;
    align-items:stretch;
    justify-items:normal;
    padding:10px;    
    background-color: WHITE;
}

.sgc_table tbody tr td {
    padding:5px;
}