.menuHeader{
    text-align: center
}
.menuTable{
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.menuTable tr{
    text-align: center;
}

#tableContainer{
    display: flex;
    justify-content: center;
}
.areaTable{
    border: 1px solid silver;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.areaTable .areaRow{
    display: flex;
    position: relative;
}

.areaTable .areaRow .areaCell{
    font-size: 24px;
    width: 50px;
    border: 1px solid silver;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.areaTable .areaRow .areaCellDisabled{
    background-color: silver;
}
.areaTable .areaRow .areaCellFocused{
    box-shadow: 0px 0px 10px #888888;
}

.areaTable .areaRow .areaCellProduct{
    background-color: rgb(148, 234, 255);
}

.areaTable .areaRow .areaCellClickable{
    cursor: pointer;
}

.areaTable .mathRowTopBorder{
    border-top: 1px solid rgb(88, 88, 88);
}
.areaTable .mathRowBottomBorder{
    border-bottom: 1px solid rgb(88, 88, 88);
}

#numberBar{
    position: absolute;
    border: 1px solid black;
    display: flex;
    align-items: center;
    right: -80px;
    left: -80px;
    z-index: 1;
    justify-content: center;
    background-color: white;
    box-shadow: 0px 0px 10px #888888;
}

#numberBar .numberBarCell{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid black;
    cursor: pointer;
    user-select: none;
}


.viewFooter{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top:30px;
}