.table-selection{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.table-select-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.quantity-control {
    display: inline-flex;
    align-items: center;
}

.quantity-control button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border: 1px solid lightgray;
    border-radius: 25px;
    background-color: white;
}
.quantity-control button:hover {
    background-color: lightslategrey;
    cursor: pointer;
}
.quantity-control button:focus {
    outline: none;
    box-shadow: #1a202c;
}
.quantity-control button[disabled] {
    opacity: 50%;
    pointer-events: none;
}
.quantity-control button:active {
    background-color: lightsteelblue;
}

.quantity-control input {
    border: 1px solid #ccc;
    border-radius: 25px;
    width: 40px;
    text-align: center;
    margin: 0 4px;
}
.menu-item-image {
    width: 200px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
}
