/* Live Event Seating Lite - Public Styles */

.seating-plan-container.les-lite-version {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.seating-map-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    overflow: hidden;
    height: 600px;
}

#seating-map-svg {
    width: 100%;
    height: 100%;
    cursor: grab;
}

#seating-map-svg.is-panning {
    cursor: grabbing;
}

.seating-summary-wrapper {
    width: 100%;
    max-width: 320px;
    flex-shrink: 0;
}

/* Elements */
.seat { fill: #E3F2FD; 
    stroke: #90CAF9;
    stroke-width: 1px;
    cursor: pointer; }
.seat:hover { opacity: 0.8; }
.seat-label { fill: #ffffff; 
    font-size: 8px; font-weight: bold; 
    pointer-events: none; 
    user-select: none; }
.table-shape { fill: #f0f0f1; 
    stroke: #aaa; }
.table-label { text-anchor: middle; 
    dominant-baseline: middle; 
    pointer-events: none; 
    user-select: none; }
.stage-shape { fill: #e0e0e0; 
    stroke: #999; }
.polygon-shape { stroke: #a0a5aa; 
    stroke-width: 1px; 
    fill: transparent; }

/* Controls */
.les-view-controls { position: absolute; 
    right: 10px; 
    bottom: 10px; 
    z-index: 10; 
    display: flex; 
    flex-direction: column; 
    gap: 5px; }
.les-zoom-btn { background: #fff; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    cursor: pointer; width: 
    32px; height: 32px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.les-zoom-btn:hover { background: #f0f0f0; }

/* Tooltip */
.les-seat-tooltip { position: absolute; 
    background: #333; 
    color: #fff; 
    padding: 5px 10px; 
    border-radius: 4px; 
    font-size: 12px; 
    z-index: 100; 
    pointer-events: none; }

/* Seat States */
.seat { fill: var(--lesl-color-available, #4CAF50);
    stroke: #fff;
    stroke-width: 1px;
    cursor: pointer;
    transition: all 0.2s ease; }
.seat:hover { fill: var(--lesl-color-selected, #FFC107);
    stroke: #E65100;
    stroke-width: 2px; }
.seat.selected { fill: var(--lesl-color-selected, #FFC107);
    stroke: #E65100;
    stroke-width: 2px; }
.seat.reserved { fill: #FF9800;
    stroke: #E65100;
    stroke-width: 2px;
    opacity: 0.8;
    cursor: wait; }
.seat.booked { fill: var(--lesl-color-booked, #BDBDBD);
    stroke: #757575;
    cursor: not-allowed; }
.seat.booked:hover { opacity: 1;
    cursor: not-allowed; }
.seat.locked { fill: var(--lesl-color-booked, #BDBDBD);
    stroke: #757575;
    cursor: not-allowed; }
.seat circle.reserved { fill: var(--lesl-color-booked, #BDBDBD);
    stroke: #757575;
    cursor: not-allowed; }

/* Booking Form */
.les-booking-form { 
    background: #f9f9f9; 
    padding: 15px; 
    border: 1px solid #e0e0e0; 
    border-radius: 4px; 
    margin-top: 10px; 
}

.les-form-group { 
    margin-bottom: 15px; 
}

.les-form-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: #333; 
}

.les-form-group select { 
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    font-size: 14px; 
    background-color: #fff; 
    cursor: pointer; 
}

.les-form-group select:focus { 
    outline: none; 
    border-color: #4CAF50; 
    box-shadow: 0 0 3px rgba(76, 175, 80, 0.3); 
}

.les-total-price { 
    display: flex; 
    justify-content: space-between; 
    padding: 10px; 
    background: #fff; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    margin-bottom: 15px; 
    font-size: 16px; 
    font-weight: 600; 
}

.les-total-price span { 
    color: #4CAF50; 
}

.les-selected-seats { 
    padding: 10px; 
    background: #f0f8f0; 
    border: 1px solid #c8e6c9; 
    border-radius: 4px; 
    margin-bottom: 15px; 
}

.les-no-seats-selected { 
    color: #999; 
    margin: 0; 
    font-style: italic; 
}

.les-seats-list strong { 
    display: block; 
    margin-bottom: 8px; 
    color: #333; 
}

.les-seats-list ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

.les-seats-list li { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 6px 0; 
    border-bottom: 1px solid #e0e0e0; 
}

.les-seats-list li:last-child { 
    border-bottom: none; 
}

.les-remove-seat { 
    background: #ff6b6b; 
    color: #fff; 
    border: none; 
    border-radius: 3px; 
    padding: 2px 8px; 
    cursor: pointer; 
    font-size: 12px; 
    font-weight: bold; 
}

.les-remove-seat:hover { 
    background: #ff5252; 
}

#les-add-to-cart-btn { 
    width: 100%; 
    padding: 12px; 
    font-size: 16px; 
    font-weight: 600; 
    border-radius: 4px; 
    cursor: pointer; 
    transition: all 0.2s; 
}

#les-add-to-cart-btn:disabled { 
    opacity: 0.5; 
    cursor: not-allowed; 
}

@media (max-width: 768px) {
    .seating-summary-wrapper {
        max-width: 100%;
    }
}

/* Seat Quantity Styling - Fixed (No Changes) */
.lesl-quantity-fixed {
    display: inline-block;
    min-width: 30px;
    text-align: center;
    padding: 4px 8px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-weight: 600;
    color: #333;
}