/* The Kalamanch Custom Theme Styles (Light Mode) */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
}

/* Glassmorphism card utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.h-16 {
    height: 90px !important; /* Change 80px to your desired height */
}

.glass-panel-glow {
    background: #ffffff;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(225, 29, 72, 0.3);
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.08);
}

/* Dynamic Auditorium Screen Styling */
.screen-curved {
    height: 14px;
    width: 80%;
    margin: 0 auto 30px auto;
    background: linear-gradient(180deg, #0284c7 0%, rgba(2, 132, 199, 0.1) 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: 0 -8px 25px rgba(2, 132, 199, 0.4);
}

/* Seat Visualizer Styles */
.seat-item {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

/* 🟩 Available Seats */
.seat-available {
    background-color: #16a34a;
    color: #ffffff;
    border: 1px solid #15803d;
}
.seat-available:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(22, 163, 74, 0.6);
    z-index: 10;
}

/* 🟨 Locked Seats (Held by another customer within 3 mins) */
.seat-locked {
    background-color: #d97706;
    color: #ffffff;
    border: 1px solid #b45309;
    cursor: not-allowed;
    opacity: 0.85;
}

/* 🟥 Booked Seats */
.seat-booked {
    background-color: #e11d48;
    color: #ffffff;
    border: 1px solid #be123c;
    cursor: not-allowed;
    opacity: 0.65;
}

/* 🟦 Selected Seats (by active current customer) */
.seat-selected {
    background-color: #2563eb;
    color: #ffffff;
    border: 2px solid #1d4ed8;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.7);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 8px rgba(37, 99, 235, 0.5); }
    100% { box-shadow: 0 0 18px rgba(37, 99, 235, 0.9); }
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e11d48;
}
