@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
* { margin:0; padding:0; box-sizing:border-box; font-family:'Inter', sans-serif; }
body { background:#fafafa; color:#171717; }
.header { background:#fff; padding:1.5rem; border-bottom:1px solid #e5e5e5; display:flex; justify-content:space-between; align-items:center; }
.header h1 { font-size:1.25rem; font-weight:700; color:#171717; }
.board-container { max-width:800px; margin:2rem auto; padding:0 1.5rem; }
.suggest-box { background:#fff; padding:1.5rem; border-radius:12px; border:1px solid #e5e5e5; display:flex; gap:1rem; margin-bottom:2rem; box-shadow:0 1px 3px rgba(0,0,0,0.05); }
.suggest-box input { flex:1; padding:0.75rem 1rem; border:1px solid #d4d4d4; border-radius:8px; font-size:1rem; outline:none; transition:border 0.2s; }
.suggest-box input:focus { border-color:#2563eb; }
.btn { background:#2563eb; color:#fff; border:none; padding:0.75rem 1.5rem; border-radius:8px; font-weight:600; cursor:pointer; }
.btn:hover { background:#1d4ed8; }
.req-item { display:flex; gap:1.5rem; background:#fff; padding:1.5rem; border-radius:12px; border:1px solid #e5e5e5; margin-bottom:1rem; align-items:flex-start; transition:box-shadow 0.2s; }
.req-item:hover { box-shadow:0 4px 6px -1px rgba(0,0,0,0.05); }
.vote-box { display:flex; flex-direction:column; align-items:center; background:#f8fafc; border:1px solid #e2e8f0; border-radius:8px; padding:0.5rem 1rem; min-width:60px; cursor:pointer; transition:border 0.2s; }
.vote-box:hover { border-color:#2563eb; }
.vote-count { font-size:1.1rem; font-weight:700; color:#1e293b; margin-top:0.25rem; }
.status-badge { display:inline-block; padding:4px 8px; border-radius:4px; font-size:0.75rem; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; margin-top:0.5rem; }
.status-under-review { background:#fef3c7; color:#d97706; }
.status-planned { background:#dbeafe; color:#2563eb; }
.status-completed { background:#dcfce7; color:#166534; }

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