@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
* { margin:0; padding:0; box-sizing:border-box; font-family:'DM Sans', sans-serif; }
body { background:var(--bg-color, #f5f3ff); color:#333; display:flex; flex-direction:column; min-height:100vh; }
.form-container { flex:1; display:flex; align-items:center; justify-content:center; padding:2rem; }
.form-card { background:#fff; padding:3rem; border-radius:24px; box-shadow:0 10px 25px rgba(139,92,246,0.1); max-width:600px; width:100%; position:relative; overflow:hidden; }
.form-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:6px; background:var(--theme, #8b5cf6); }
.form-card h1 { font-size:2.2rem; margin-bottom:1.5rem; color:#1f2937; }
.input-wrap { margin-bottom:1.5rem; }
.input-wrap label { display:block; font-weight:600; margin-bottom:0.5rem; color:#4b5563; }
.input-wrap input, .input-wrap textarea { width:100%; padding:1rem; border:2px solid #ede9fe; border-radius:12px; outline:none; transition:0.3s; font-size:1rem; }
.input-wrap input:focus, .input-wrap textarea:focus { border-color:var(--theme, #8b5cf6); }
.btn { background:var(--theme, #8b5cf6); color:#fff; border:none; padding:1rem 2rem; border-radius:12px; font-weight:700; font-size:1.1rem; cursor:pointer; width:100%; transition:0.2s; }
.btn:hover { opacity:0.9; transform:translateY(-2px); }
/* Admin */
.admin-navbar { background:#1e1b4b; padding:1.5rem; display:flex; justify-content:space-between; color:white; }
.admin-body { padding:2rem; max-width:1000px; margin:0 auto; width:100%; }
.response-card { background:white; padding:1.5rem; border-radius:16px; margin-bottom:1rem; box-shadow:0 2px 10px rgba(0,0,0,0.05); border-left:4px solid var(--theme, #8b5cf6); }

/* ========================================= */
/* 📱 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; }
}
