/* Seat Booking Dialog - Universal Styles */

.seat-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.seat-dialog {
    background: #fff;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.seat-dialog-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.seat-dialog-close:hover {
    background: #ef4444;
    color: #fff;
    transform: rotate(90deg);
}

.seat-dialog-container {
    display: flex;
    height: 95vh;
    max-height: 900px;
}

/* Left Panel */
.seat-left-panel {
    width: 280px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 95vh;
}

.seat-branch-title {
    font-size: 22px;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.seat-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.seat-info-item {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.seat-info-item i {
    font-size: 18px;
    color: #f59e0b;
    margin-top: 2px;
}

.seat-info-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seat-info-value {
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.seat-zone-pricing {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zone-price-card {
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid;
    transition: all 0.3s;
    cursor: pointer;
}

.zone-price-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.zone-price-card.premium {
    border-left-color: #ec4899;
}

.zone-price-card.standard {
    border-left-color: #fbbf24;
}

.zone-price-card.economy {
    border-left-color: #00CED1;
}

.zone-price-card h4 {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.zone-price-card.premium h4 {
    color: #ec4899;
}

.zone-price-card.standard h4 {
    color: #d97706;
}

.zone-price-card.economy h4 {
    color: #00CED1;
}

.zone-price-card .price {
    font-size: 22px;
    font-weight: 900;
    color: #1e293b;
    margin: 0;
}

.zone-price-card .price-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.library-photos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.library-photo-item {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.library-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.library-photo-item:hover img {
    transform: scale(1.05);
}

/* Right Panel */
.seat-right-panel {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #fff;
    max-height: 95vh;
}

.seat-section-title {
    font-size: 18px;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.seat-zone-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
    align-items: center;
}

.seat-zone-btn {
    padding: 8px 12px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.seat-zone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.seat-zone-btn.active {
    border-color: #1e293b;
    box-shadow: 0 0 0 3px rgba(30,41,59,0.1);
}

.seat-legend {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-left: auto;
}

.seat-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.seat-legend-box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.seat-grid {
    background: transparent;
    border-radius: 10px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.seat-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.seat-item.vacant {
    background: #22c55e;
    color: #fff;
}

.seat-item.vacant:hover {
    background: #16a34a;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(34,197,94,0.3);
}

.seat-item.reserved {
    background: #94a3b8;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

.seat-item.selected {
    background: #22c55e;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 6px 12px rgba(34,197,94,0.4);
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1.15); }
    50% { transform: scale(1.25); }
}

.seat-book-button {
    width: 100%;
    padding: 12px;
    background: #1e40af;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    margin-top: 6px;
}

.seat-book-button:hover:not(:disabled) {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(30,64,175,0.3);
}

.seat-book-button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .seat-dialog {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .seat-dialog-container {
        flex-direction: column;
        height: 100vh;
    }
    
    .seat-left-panel {
        width: 100%;
        max-height: 200px;
    }
    
    .seat-zone-buttons {
        flex-direction: column;
    }
    
    .seat-grid {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
        gap: 8px;
    }
}

/* Booking Form Styles */
.booking-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.booking-form-dialog {
    background: #fff;
    width: 90%;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    animation: slideUp 0.3s ease;
}

.booking-form-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-form-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.booking-form-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 18px 16px;
    text-align: center;
    color: #fff;
}

.booking-form-header i {
    font-size: 28px;
    margin-bottom: 6px;
    opacity: 0.95;
}

.booking-form-header h2 {
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.booking-form-header p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.booking-form-content {
    padding: 18px 20px 18px;
}

.booking-summary {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 16px;
    border-left: 3px solid #6366f1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.summary-label {
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.summary-value {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
}

.booking-details-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: #6366f1;
    font-size: 13px;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.shift-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.shift-radio {
    position: relative;
    cursor: pointer;
}

.shift-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.shift-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 10px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-align: center;
    min-height: 70px;
    min-width: 95px;
}

.shift-label i {
    font-size: 20px;
    color: #94a3b8;
}

.shift-label strong {
    font-size: 12px;
}

.shift-label small {
    font-size: 9px;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.3;
    white-space: nowrap;
}

.shift-radio input:checked + .shift-label {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: #6366f1;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.shift-radio input:checked + .shift-label i,
.shift-radio input:checked + .shift-label small {
    color: #fff;
}

.form-submit-btn {
    padding: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    margin-top: 0;
}

.form-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.form-submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-submit-btn i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-form-dialog {
        width: 95%;
        max-width: none;
    }
    
    .booking-summary {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .shift-options {
        grid-template-columns: 1fr;
    }
    
    .shift-label {
        min-height: auto;
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px 14px;
    }
    
    .shift-label small {
        margin-left: auto;
    }
}

/* Structure View Button */
.structure-view-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    margin-bottom: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.structure-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,64,175,0.3);
}

.structure-view-btn i {
    font-size: 16px;
}

/* Full-Page Structure Dialog - NO SCROLL, COMPACT */
.structure-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.structure-dialog-fullpage {
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.structure-close-btn {
    position: fixed;
    top: 15px;
    right: 20px;
    padding: 10px 20px;
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 100000;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    transition: all 0.3s;
}

.structure-close-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.structure-title {
    text-align: center;
    padding: 18px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99998;
}

.structure-title h1 {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.structure-title h1 i {
    font-size: 20px;
}

.structure-title p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

.library-floor-plan {
    padding: 30px 0 20px 0;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: stretch;
    justify-content: flex-start;
    background: #f8fafc;
    margin-top: 85px;
    width: 100%;
    position: relative;
    margin-left: 0;
}

.floor-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
}

.box-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.box-row {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.floor-box {
    width: 52px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border: 2px solid #1e293b;
    box-sizing: border-box;
    transition: all 0.3s;
}

.floor-box:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 10;
}

.horizontal-gap {
    width: 55px;
}

.vertical-gap {
    height: 20px;
}

.left-group {
    /* 6 boxes wide */
}

.right-group {
    /* 4 boxes wide */
}

.full-group {
    /* 8 boxes wide */
}

/* Floor Sections Container */
.floor-sections-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-shrink: 0;
}

/* Right Side Red Sky Blue Box */
.right-info-box {
    flex: 1;
    min-width: 400px;
    height: calc(100% + 40px);
    background: linear-gradient(135deg, #ef4444 0%, #87ceeb 100%);
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    align-self: stretch;
    margin-right: 0;
    margin-top: -20px;
    margin-bottom: -20px;
    border-left: 3px solid #000;
}

@media (max-width: 1400px) {
    .floor-box {
        width: 60px;
        height: 48px;
        font-size: 14px;
    }
    
    .horizontal-gap {
        width: 60px;
    }
    
    .vertical-gap {
        height: 25px;
    }
}

@media (max-width: 1024px) {
    .floor-box {
        width: 50px;
        height: 40px;
        font-size: 12px;
    }
    
    .horizontal-gap {
        width: 50px;
    }
    
    .vertical-gap {
        height: 20px;
    }
    
    .library-floor-plan {
        padding: 20px;
    }
}

/* Seat Selection Floor Layout (Same as Complete Structure) */
.seat-floor-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    border-radius: 0;
    max-height: 450px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.seat-floor-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
}

.seat-box-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.seat-box-group.seat-full-group {
    width: 100%;
}

.seat-box-row {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.floor-seat-box {
    width: 52px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border: 2px solid #1e293b;
    box-sizing: border-box;
    transition: all 0.3s;
    cursor: pointer;
}

.floor-seat-box:hover:not(.reserved) {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 10;
}

.floor-seat-box.reserved {
    cursor: not-allowed;
    opacity: 1;
    background: #ef4444 !important;
}

.floor-seat-box.disabled-seat {
    cursor: not-allowed;
    opacity: 0.75;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.4) 0%, rgba(100, 181, 246, 0.35) 50%, rgba(144, 202, 249, 0.3) 100%) !important;
    pointer-events: none;
    filter: none;
    border-color: rgba(135, 206, 235, 0.5);
    box-shadow: inset 0 2px 8px rgba(135, 206, 235, 0.2);
}

.floor-seat-box.vacant {
    background: #22c55e !important;
}

.seat-horizontal-gap {
    width: 55px;
}

.seat-vertical-gap {
    height: 20px;
}

/* Seat Confirmation Dialog */
.seat-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.seat-confirm-dialog {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    animation: slideUp 0.3s ease;
}

.seat-confirm-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    color: #64748b;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seat-confirm-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

.seat-confirm-content {
    padding: 30px 24px;
    text-align: center;
}

.seat-confirm-details {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.confirm-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
}

.confirm-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.confirm-value {
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
}

.confirm-proceed-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.confirm-proceed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.confirm-proceed-btn i {
    font-size: 16px;
}

/* Half-Day Seat Styling - FORCE COLORS */
.floor-seat-box.half-day {
    position: relative;
    overflow: hidden;
}

.floor-seat-box.half-day::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: #1e293b;
    z-index: 1;
}

.floor-seat-box.morning-available {
    /* Top green (morning available), bottom red (evening reserved) */
    background: linear-gradient(180deg, #22c55e 0%, #22c55e 50%, #ef4444 50%, #ef4444 100%) !important;
}

.floor-seat-box.evening-available {
    /* Top red (morning reserved), bottom green (evening available) */
    background: linear-gradient(180deg, #ef4444 0%, #ef4444 50%, #22c55e 50%, #22c55e 100%) !important;
}

/* FINAL FIX - Floor Seat Box Colors - 100% WORKING */
.floor-seat-box.reserved {
    cursor: not-allowed !important;
    opacity: 1 !important;
    background: #ef4444 !important;
    color: #fff !important;
}

.floor-seat-box.vacant {
    background: #22c55e !important;
    color: #fff !important;
    cursor: pointer !important;
}

.floor-seat-box.disabled-seat {
    cursor: not-allowed !important;
    opacity: 0.75 !important;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.4) 0%, rgba(100, 181, 246, 0.35) 50%, rgba(144, 202, 249, 0.3) 100%) !important;
    pointer-events: none !important;
    border-color: rgba(135, 206, 235, 0.5) !important;
    color: #94a3b8 !important;
}

/* Half-Day Seats with Line in Middle */
.floor-seat-box.half-day {
    position: relative !important;
    overflow: hidden !important;
    color: #fff !important;
}

.floor-seat-box.half-day::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 50% !important;
    height: 1px !important;
    background: rgba(30, 41, 59, 0.3) !important;
    z-index: 10 !important;
}

.floor-seat-box.morning-available {
    background: linear-gradient(180deg, #22c55e 0%, #22c55e 50%, #ef4444 50%, #ef4444 100%) !important;
    color: #fff !important;
    cursor: pointer !important;
}

.floor-seat-box.evening-available {
    background: linear-gradient(180deg, #ef4444 0%, #ef4444 50%, #22c55e 50%, #22c55e 100%) !important;
    color: #fff !important;
    cursor: pointer !important;
}
