@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: #f3f4f6; color: #1f2937; }
/* Public Form */
.public-form-wrap { min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; background:linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding:2rem; }
.contact-card { background:rgba(255,255,255,0.95); padding:3rem; border-radius:24px; box-shadow:0 25px 50px -12px rgba(0,0,0,0.25); max-width:500px; width:100%; }
.contact-card h1 { margin-bottom:0.5rem; font-size:2rem; color:#111827; }
.form-group { margin-bottom:1.5rem; }
.form-group label { display:block; margin-bottom:0.5rem; font-weight:500; color:#4b5563; font-size:0.9rem; }
.form-group input, .form-group textarea { width:100%; padding:0.75rem 1rem; border:1px solid #d1d5db; border-radius:8px; outline:none; transition:ring 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color:#6366f1; box-shadow:0 0 0 3px rgba(99,102,241,0.2); }
.btn-primary { background:#6366f1; color:#fff; border:none; width:100%; padding:1rem; border-radius:8px; font-weight:bold; font-size:1rem; cursor:pointer; transition:background 0.2s; }
.btn-primary:hover { background:#4f46e5; }
/* Admin Layout */
.admin-layout { display: flex; min-height: 100vh; background: #f8fafc; }
.sidebar { width: 260px; background: #ffffff; border-right: 1px solid #e2e8f0; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; z-index: 10; }
.sidebar-header { padding: 2rem 1.5rem; font-size: 1.5rem; font-weight: 800; color: #0f172a; border-bottom: 1px solid #f1f5f9; letter-spacing: -0.02em; display:flex; align-items:center; gap:0.5rem; }
.sidebar nav { padding: 1.5rem 1rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.menu-item { color: #64748b; text-decoration: none; display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; font-weight: 600; border-radius: 10px; transition: all 0.2s; font-size: 0.95rem; }
.menu-item:hover { background: #f1f5f9; color: #0f172a; }
.menu-item.active { background: #0f172a; color: #ffffff; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.content { flex: 1; padding: 2rem 3rem; overflow-y: auto; background: #f8fafc; }

/* Table */
.data-table { width: 100%; background: #ffffff; border-radius: 16px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid #e2e8f0; }
.data-table th, .data-table td { padding: 1.25rem 1.5rem; text-align: left; border-bottom: 1px solid #f1f5f9; }
.data-table th { background: #f8fafc; font-weight: 700; color: #475569; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; border-bottom: 2px solid #e2e8f0; }
.data-table tr:last-child td { border-bottom: none; }
.status-badge { padding: 0.3rem 0.8rem; border-radius: 9999px; font-size: 0.8rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.25rem; }
.status-lead { background: #e0e7ff; color: #4f46e5; border: 1px solid #c7d2fe; }
.status-progress { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.status-completed { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.status-select { border: 1px solid #cbd5e1; border-radius: 6px; padding: 0.3rem 0.5rem; outline: none; background: #ffffff; font-size: 0.85rem; color: #475569; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.status-select:hover { border-color: #94a3b8; }
.status-select:focus { border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.btn-primary { background: #0f172a; color: #fff; border: none; padding: 0.85rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-primary:hover { background: #1e293b; transform: translateY(-1px); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }

/* ========================================= */
/* 📱 Mobile Responsiveness (Auto-Generated) */
/* ========================================= */
@media (max-width: 768px) {
    /* Global Containers */
    .container, .main-container, .board-container, .admin-container, .admin-wrap { padding: 1rem !important; }
    
    /* Hero & Headers */
    .hero { padding: 3rem 1rem !important; margin-bottom: -20px !important; border-radius: 0 0 20px 20px !important; }
    .hero h1, .hero-title, .event-title, .form-card h1, .contact-card h1 { font-size: 2rem !important; }
    
    /* Layouts & Grids */
    .admin-dashboard, .admin-layout, div[style*='grid-template-columns'] { grid-template-columns: 1fr !important; display: flex !important; flex-direction: column !important; gap: 1.5rem !important; }
    .product-grid { grid-template-columns: 1fr !important; }
    
    /* Cards & Boxes */
    .booking-card, .ticket-card, .form-card, .contact-card, .admin-login, .shortener-box, .suggest-box, .req-item, .admin-panel, .card { width: 100% !important; max-width: 100% !important; padding: 1.5rem !important; flex-direction: column !important; align-items: stretch !important; box-sizing: border-box !important; }
    
    /* Sidebar */
    .sidebar { width: 100% !important; height: auto !important; padding: 1.5rem !important; }
    
    /* Tables */
    .data-table, .roster-table, table { display: block !important; width: 100% !important; overflow-x: auto !important; white-space: nowrap !important; -webkit-overflow-scrolling: touch; }
    
    /* Navigations */
    .navbar, .header, .admin-header, .admin-nav { flex-direction: column !important; text-align: center !important; gap: 1rem !important; padding: 1rem !important; }
    
    /* Form Elements & Buttons */
    .btn, button, input, select, textarea { width: 100% !important; font-size: 1rem !important; box-sizing: border-box !important; }
    .input-group, .suggest-box { flex-direction: column !important; gap: 1rem !important; }
    
    /* Specific Fixes */
    .vote-box { width: 100% !important; padding: 0.5rem !important; flex-direction: row !important; justify-content: center !important; gap: 0.5rem !important; }
    .vote-count { margin-top: 0 !important; }
}

/* Demo Navigation Banner */
.demo-banner { position: fixed; bottom: 20px; right: 20px; background: #111827; border-radius: 12px; padding: 1rem; display: flex; align-items: center; gap: 1rem; box-shadow: 0 10px 25px rgba(0,0,0,0.2); z-index: 9999; font-family: sans-serif; }
.demo-banner-btn { background: #374151; color: white; border: none; padding: 0.5rem 1rem; border-radius: 6px; text-decoration: none; font-size: 0.9rem; cursor: pointer; transition: background 0.3s; }
.demo-banner-btn:hover { background: #4b5563; }
.demo-banner-btn.active { background: #6366f1; font-weight: bold; }
.demo-banner-btn.reset { background: #ef4444; }
.demo-label { color: #9ca3af; font-weight: bold; font-size: 0.9rem; margin-right: 0.5rem; }
