.booking-container {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.booking-map {
    width: 100%;
    max-width: 800px;
    display: block;
    position: relative;
}

.table-overlay {
    position: absolute;
    border-radius: 8px;
    background: rgba(0, 0, 255, 0.3);
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    padding: 5px;
    text-align: center;
    font-weight: bold;
    color: white;
}

.table-overlay:hover {
    background: rgba(255, 255, 0, 0.5);
    transform: scale(1.1);
}

.table-overlay.selected {
    background: rgba(0, 255, 0, 0.7);
    border: 3px solid #fff;
}

.table-overlay.booked {
    background: rgba(128, 128, 128, 0.6);
    pointer-events: none;
}

#booking-info {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

#confirm-booking, #clear-booking {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

#confirm-booking {
    background: green;
    color: white;
}

#clear-booking {
    background: red;
    color: white;
}
