.section-header {
    margin-top: 30px;
    font-size: 1.5em;
    color: #333;
}

.section-table {
    margin-bottom: 20px;
    border-collapse: collapse;
    width: 100%;
}

    .section-table th, .section-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
    }

    .section-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }


.seat-container {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 -2px 4px rgba(0, 0, 0, 0.05); /* Top and bottom shadow */
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

    .seat-container:hover {
        transform: translateY(-5px); /* Lift the seat */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 -4px 8px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
    }

.seat-checkbox:checked + .seat-badge {
    animation: pulse 0.5s infinite; /* Pulse animation */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.seat-badge {
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.seat-number {
    font-weight: bold;
    color: #6c757d;
}
