/* ****************************************************************************
 * Lotto check numbers formatting                                             *
 *                                                                            *
 * Author: ETM                                                                *
 * Created: 20230113                                                          *
 *                                                                            *
 * *************************************************************************  */

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

.lcn_game_button {
    min-width:100px;
    width:100px;
    max-width:100px;
    min-width:100px;
    height:100px;
    max-width:100px;
    border:1px SOLID BLACK;
    margin:5px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

form.lcn_check_form label {
    display:none
}

form.lcn_check_form div[id$="-desc"]{
    display:none;
}

.lcn_numbox_container{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
}

.lcn_numbox{
    margin: 0 3px;
    border-width: 5px;
    width: 4.5em;
    height: 4.5em;    
}

.lcn_numbox_black{
    border-color: black;
}

.lcn_numbox_red{
    border-color:red;
}

.lcn_numbox_green{
    border-color:green;
}

.lcn_numbox_yellow{
    border-color:yellow;
}

.lcn_button_spacer{
    margin-top:5px;
}