/* ============================================================
   بنك الأفكار — كلية الهندسة، جامعة المنصورة
   Main Stylesheet
   ============================================================ */

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

/* ===== CSS Variables ===== */
:root {
  --primary:       #1a3a6e;
  --primary-dark:  #0f2451;
  --primary-light: #2a5298;
  --secondary:     #fbbf24;
  --secondary-light: #fcd34d;
  --accent:        #3b6ecb;
  --success:       #10b981;
  --warning:       #f59e0b;
  --danger:        #ef4444;
  --info:          #3b82f6;
  --review:        #f59e0b;
  --implementing:  #10b981;
  --done:          #3b82f6;
  --rejected:      #ef4444;
  --text:          #1e293b;
  --text-light:    #475569;
  --text-muted:    #94a3b8;
  --white:         #ffffff;
  --light:         #f8fafc;
  --light-2:       #f1f5f9;
  --border:        #e2e8f0;
  --dark-gray:     #64748b;
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --shadow:        0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.12);
  --transition:    all 0.2s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  background: var(--light);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header-top {
  background: rgba(0,0,0,0.18);
  padding: 5px 0;
  font-size: 12px;
  opacity: 0.85;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  object-fit: contain;
  background: rgba(255,255,255,0.1);
  padding: 3px;
}
.header-title-group { display: flex; flex-direction: column; }
.faculty-name { font-size: 11px; opacity: 0.75; }
.system-name { font-size: 18px; font-weight: 900; color: var(--secondary); letter-spacing: 0.3px; }
.system-name-en { font-size: 10px; opacity: 0.5; }

.main-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-link {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  transition: var(--transition);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
}
.btn-admin {
  background: var(--secondary) !important;
  color: var(--primary-dark) !important;
  border-color: transparent !important;
}
.btn-admin:hover {
  background: var(--secondary-light) !important;
}

/* Mobile nav */
.mobile-nav { padding: 10px 16px; }
.mobile-nav .nav-link { display: flex; padding: 10px 14px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); border-radius: 0; }
.mobile-nav .nav-link:last-child { border-bottom: none; }
.hidden { display: none !important; }

/* ===== Hero Section ===== */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--accent) 100%);
  color: var(--white);
  padding: 56px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(251,191,36,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; }
.hero-icon { font-size: 52px; display: block; margin-bottom: 12px; }
.hero-title { font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }
.hero-subtitle { font-size: 1rem; opacity: 0.85; max-width: 580px; margin: 0 auto 28px; line-height: 1.7; }

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  max-width: 580px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.9rem; font-weight: 900; color: var(--secondary); line-height: 1; }
.stat-label { font-size: 11px; opacity: 0.75; font-weight: 600; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Cairo', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: 0 3px 14px rgba(26,58,110,0.3);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 5px 18px rgba(26,58,110,0.35); }
.btn-secondary { background: var(--light-2); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { background: var(--light-2); }
.btn-success { background: var(--success); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { opacity: 0.88; }
.btn-gold { background: var(--secondary); color: var(--primary-dark); font-weight: 900; }
.btn-gold:hover { background: var(--secondary-light); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ===== Sections ===== */
.section { padding: 52px 0; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-title { font-size: 1.6rem; font-weight: 900; color: var(--primary); margin-bottom: 8px; }
.section-subtitle { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }
.section-line { width: 56px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; margin: 0 auto; }

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.card-header {
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-header h3 { font-size: 15px; font-weight: 800; color: var(--primary); margin: 0; display: flex; align-items: center; gap: 8px; }
.card-body { padding: 20px 22px; }
.mb-4 { margin-bottom: 24px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 18px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.badge-review    { background: #fffbeb; color: #b45309; border: 1px solid #fcd34d; }
.badge-implementing { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.badge-done      { background: #eff6ff; color: #1d4ed8; border: 1px solid #93c5fd; }
.badge-rejected  { background: #fef2f2; color: #b91c1c; border: 1px solid #fca5a5; }
.badge-sector    { background: #f1f5f9; color: var(--text-light); border: 1px solid var(--border); }

/* ===== Forms ===== */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}
.required { color: var(--danger); margin-left: 4px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,110,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 11.5px; color: var(--text-muted); margin-top: 5px; display: flex; align-items: center; gap: 4px; }
textarea.form-control { resize: vertical; min-height: 100px; line-height: 1.7; }

/* Search Box */
.search-box { position: relative; }
.search-box .search-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 13px;
  pointer-events: none;
}
.search-box .form-control { padding-right: 38px; }

/* Input Group */
.input-group { display: flex; gap: 8px; }
.input-group .form-control { flex: 1; border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.input-group .btn { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* Alerts */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.alert-danger { background: #fef2f2; color: var(--danger); border: 1px solid #fca5a5; }
.alert-success { background: #ecfdf5; color: var(--success); border: 1px solid #6ee7b7; }
.alert-warning { background: #fffbeb; color: #b45309; border: 1px solid #fcd34d; }

/* ===== Ideas Grid ===== */
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.idea-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.idea-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.idea-card-header { padding: 16px 18px; border-bottom: 1px solid var(--border); }
.idea-card-body { padding: 14px 18px; flex: 1; }
.idea-card-footer { padding: 12px 18px; border-top: 1px solid var(--border); background: var(--light); display: flex; justify-content: space-between; align-items: center; }

.idea-title { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.idea-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.idea-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.idea-ref { font-family: monospace; font-size: 11px; color: var(--info); font-weight: 700; }
.idea-date { font-size: 11px; color: var(--text-muted); }

/* Empty State */
.empty-state { text-align: center; padding: 56px 20px; color: var(--text-muted); }
.empty-icon { font-size: 60px; display: block; margin-bottom: 14px; }
.empty-state h3 { font-size: 17px; color: var(--text); margin-bottom: 6px; }

/* Ref Display */
.ref-display {
  background: var(--light-2);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}
.ref-label { font-size: 12px; color: var(--text-light); margin-bottom: 6px; font-weight: 700; }
.ref-code { font-family: monospace; font-size: 22px; font-weight: 900; color: var(--primary); letter-spacing: 2px; margin-bottom: 4px; }
.ref-hint { font-size: 11px; color: var(--text-muted); }

/* Spinner */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
.spinner-dark { border-color: var(--border); border-top-color: var(--primary); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Toast */
.toast-container { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast {
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  animation: toastIn 0.3s ease;
  pointer-events: auto;
  max-width: 320px;
  text-align: center;
}
.toast-success { background: var(--success); }
.toast-error   { background: var(--danger); }
.toast-warning { background: var(--warning); color: #1a1a1a; }
.toast-info    { background: var(--info); }
@keyframes toastIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Pagination */
.pagination { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.page-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-btn:hover:not(.active) { background: var(--light-2); }

/* ===== Footer ===== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  margin-top: 60px;
  padding: 44px 0 28px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo img { width: 46px; height: 46px; border-radius: 50%; background: var(--white); padding: 4px; object-fit: contain; }
.footer-logo-text { font-size: 16px; font-weight: 900; color: var(--secondary); display: flex; flex-direction: column; }
.footer-logo-text small { font-size: 10px; opacity: 0.65; font-weight: 400; }
.footer-desc { font-size: 12.5px; line-height: 1.8; max-width: 320px; }
.footer-title { display: block; font-size: 14px; font-weight: 800; color: var(--secondary-light); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12.5px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--white); padding-right: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; }
.footer-sponsor { font-size: 12.5px; margin-bottom: 5px; color: rgba(255,255,255,0.8); }
.footer-team { font-size: 11.5px; }

/* ===== Admin ===== */
.admin-layout { display: flex; min-height: 100vh; background: var(--light); }
.admin-sidebar {
  width: 260px;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  position: fixed;
  right: 0; top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
.sidebar-header { padding: 18px 14px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 10px; }
.sidebar-header img { width: 44px; height: 44px; border-radius: 50%; background: white; padding: 3px; object-fit: contain; }
.sidebar-header-text strong { display: block; font-size: 13px; color: var(--secondary-light); font-weight: 800; }
.sidebar-header-text small { display: block; font-size: 11px; opacity: 0.55; }
.sidebar-nav { padding: 10px 8px; }
.sidebar-section-title { padding: 13px 12px 5px; font-size: 10px; opacity: 0.4; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-item {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 13px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.78);
  font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  border: none; background: none;
  width: 100%; text-align: right;
  font-family: 'Cairo', sans-serif;
  text-decoration: none; margin-bottom: 2px;
}
.sidebar-item:hover, .sidebar-item.active { background: rgba(255,255,255,0.14); color: var(--white); }
.sidebar-item .icon { width: 20px; font-size: 14px; text-align: center; flex-shrink: 0; }
.sidebar-badge {
  margin-right: auto;
  background: var(--secondary); color: var(--primary-dark);
  font-size: 11px; font-weight: 800;
  padding: 2px 8px; border-radius: 10px; min-width: 20px; text-align: center;
}
.admin-main { margin-right: 260px; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.admin-topbar {
  background: var(--white);
  padding: 13px 26px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky; top: 0; z-index: 50;
}
.admin-topbar-title { font-size: 1.05rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.admin-user-info { display: flex; align-items: center; gap: 7px; background: var(--light); padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text-light); }
.admin-content { padding: 26px; flex: 1; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 26px; }
.stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 18px 14px; box-shadow: var(--shadow); border: 1px solid var(--border);
  text-align: center; border-bottom: 4px solid var(--primary); transition: var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stat-card-icon { font-size: 1.7rem; margin-bottom: 7px; }
.stat-card-number { font-size: 1.85rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.stat-card-label { font-size: 11px; color: var(--text-light); font-weight: 600; }
.stat-card.s-review { border-bottom-color: var(--review); }
.stat-card.s-review .stat-card-number { color: var(--review); }
.stat-card.s-implementing { border-bottom-color: var(--success); }
.stat-card.s-implementing .stat-card-number { color: var(--success); }
.stat-card.s-done { border-bottom-color: var(--info); }
.stat-card.s-done .stat-card-number { color: var(--info); }
.stat-card.s-rejected { border-bottom-color: var(--rejected); }
.stat-card.s-rejected .stat-card-number { color: var(--rejected); }

/* Table Controls */
.table-controls {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 14px 18px; margin-bottom: 14px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}

/* Ideas Table */
.ideas-table-wrapper { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); overflow: hidden; }
.ideas-table-wrapper table { width: 100%; border-collapse: collapse; }
.ideas-table-wrapper thead tr { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.ideas-table-wrapper thead th { padding: 13px 14px; font-size: 12px; font-weight: 700; color: var(--white); text-align: right; white-space: nowrap; }
.ideas-table-wrapper tbody tr { border-bottom: 1px solid var(--border); transition: var(--transition); }
.ideas-table-wrapper tbody tr:last-child { border-bottom: none; }
.ideas-table-wrapper tbody tr:hover { background: var(--light-2); }
.ideas-table-wrapper tbody td { padding: 11px 14px; font-size: 13px; color: var(--text); vertical-align: middle; }
.table-title-cell { max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.table-actions { display: flex; gap: 5px; white-space: nowrap; }

/* Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 2000;
  align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(4px);
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  width: 100%; max-width: 580px; max-height: 90vh;
  overflow-y: auto; animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity:0; transform:translateY(-16px) scale(0.97); } to { opacity:1; transform:translateY(0) scale(1); } }
.modal-header {
  padding: 17px 22px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-title { font-size: 14px; font-weight: 800; }
.modal-close { background: none; border: none; color: rgba(255,255,255,0.75); font-size: 18px; cursor: pointer; padding: 3px 8px; border-radius: 4px; transition: var(--transition); }
.modal-close:hover { color: white; background: rgba(255,255,255,0.15); }
.modal-body { padding: 22px; }
.modal-footer { padding: 15px 22px; border-top: 1px solid var(--border); display: flex; gap: 9px; justify-content: flex-end; background: var(--light); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.delete-modal .modal-header { background: linear-gradient(135deg, #b91c1c, #ef4444); }

/* Status Option Cards */
.status-option-card { display: flex; align-items: center; gap: 10px; padding: 13px; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.status-option-card:has(input:checked) { border-color: var(--primary); background: var(--light-2); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-right: 220px; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .admin-sidebar { display: none; }
  .admin-main { margin-right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-content { padding: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 24px; }
  .hero-title { font-size: 1.7rem; }
  .ideas-grid { grid-template-columns: 1fr; }
  #mobile-menu-btn { display: flex !important; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; padding: 14px 16px; }
}
