/* ✅ Step 2: Improve Styles (CSS)
Update seating-chart.css for hover/tooltip readability and accessibility: */

.scc-seat {
    font-size: 22px;
    padding: 6px 12px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.scc-seat:hover {
    background: #eef;
}

.scc-seat.selected {
    background: #cdeeff;
    border-color: #00aaff;
}

.scc-seat.disabled {
    background: #eee;
    color: #999;
    border-color: #ccc;
    cursor: not-allowed;
}

.scc-seat::after {
    content: attr(title);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    background: #222;
    color: #fff;
    padding: 4px 6px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
    transition: opacity 0.2s;
}

.scc-seat:hover::after {
    opacity: 1;
}

.scc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}