.seating-board {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.table-circle {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid var(--sage);
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-label {
    text-align: center;
    font-weight: bold;
    color: var(--ink);
}

.seat {
    position: absolute;
    width: 70px;
    min-height: 32px;
    text-align: center;
    border: 1px dashed var(--terracotta);
    border-radius: 999px;
    background: white;
    font-size: 0.8rem;
    padding: 2px;
    color: var(--ink);
}

.empty-seat {
    color: var(--muted);
}
