.tables {
    --gap: 0rem;
    gap: var(--gap);
}

.btn.book-table:disabled {
    filter: saturate(0);
}

.btn.book-table {
    background-color: var(--c2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 900;
    line-height: 1.2;
    font-size: 1.5em;
    color: hsla(0, 0%, 0%, 0.7);
    transition: all ease 300ms;
}

.btn.book-table:hover {
    letter-spacing: 3px;
    color: hsla(0, 0%, 100%, 1);
}

#booking-details .title span,
#booking-details .details > * {
    flex: 1 1 50%;
    margin-top: 1rem;
}

#booking-details .title {
    border-bottom: 1px solid var(--c2);
}