﻿.table-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    font-family: Helvetica Neue;
    z-index: 1000;
}

.table-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3 - 20px);
    height: 150px;
    margin: 10px;
    font-size: 18px;   
    cursor: pointer;
    box-sizing: border-box;
}
.menu-item {
    padding: 15px; /* Adjust this value to increase or decrease the padding */
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.menu-item:hover {
        background-color: #f5f5f5; /* Change this color to the one you want */
 }

.noselect {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

