.seating_grid {
    margin: 1em auto;
    border-collapse: collapse;
}

.seating_grid td {
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: 1px solid #393F44;
    text-align: center;
    font-family: sans-serif;
    font-size: 13px
}

.seating_grid td.reserved {
    background-color: #F1FB44;
    font-weight: bold;
    color: whitesmoke;
}

.seating_grid td.sittable {
    background-image: url("/images/lanseat.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #F8931F;
    font-weight: bold;
    color: whitesmoke;
}

.seating_grid td.staff {
    background-image: url("/images/staffseat.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #2A9FD6;
    font-weight: bold;
    color: whitesmoke;
}

.seating_grid td.nosit {
    background-color: #F8931F;
    font-weight: bold;
    color: whitesmoke;
}

.seating_grid td.satperson {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #74E106;
    font-weight: bold;
    color: whitesmoke;
}

.seating_grid td.satstaff {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #15516d;
    font-weight: bold;
    color: whitesmoke;
}

.seating_grid td.satvendor {
    background-color: #F81414;
    font-weight: bold;
    color: whitesmoke;
}

.seating_grid td.clicked {
    background-image: url("/images/weedle.gif");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.seating_tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.seating_tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.seating_tooltip .seating_tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.seating_tooltip:hover .seating_tooltiptext {
    visibility: visible;
    opacity: 1;
}

.container__trigger {
    /* Center the content */
    align-items: center;
    display: flex;
    justify-content: center;

    /* Size */
    height: 16rem;
    width: 16rem;

    /* Misc */
    border: 1px solid #cbd5e0;

}
.container__menu {
    /* Absolute position */
    position: absolute;

    /* Reset */
    list-style-type: none;
    margin: 0;
    padding: 0;

    /* Misc */
    border: 1px solid #F8931F;
    border-radius: 0.25rem;
    background-color: #000000;
}
.container__menu--hidden {
    display: none;
}
.container__item {
    padding: 0.5rem 1rem;
    white-space: nowrap;
}
.container__item:hover {
    background-color: #bee3f8;
}
.container__divider {
    border-bottom: 1px solid #cbd5e0;
    height: 1px;
}