.mesas {
    display: flex;
    height:100vh;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
   align-items:center;
   align-content: flex-start;
    overflow-y: auto;
    padding: 3px;
}

.mesa {
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 90px;
    
    text-align: center;
}
.livre{
    background-color: #4CAF50;
    color: white;
}
.ocupada {
    background-color: #dd0404;
    color: white;
}
.mesa:hover {
   /* background-color: #555;*/
}
.mesa_personalizada{
    background-color: #0000FF;
    color: white;
}
.icon_mesa{
    height:50px;
}