/* ============================================================
   ثيم فاتح (أبيض/أخضر) لواجهة الموظف — يطابق التصميم القديم
   يُطبَّق فقط على body.theme-light (صفحة التفعيل + الدخول).
   لوحة الإدارة تبقى بالثيم الداكن.
   ============================================================ */
body.theme-light{
  background:#eef3f1;
  color:#22332c;
}

/* بطاقات بيضاء بظلّ ناعم */
body.theme-light .card,
body.theme-light .topbar,
body.theme-light .auth-card{
  background:#ffffff;
  border:1px solid #e3eae6;
  box-shadow:0 6px 22px rgba(16,90,60,.08);
  color:#22332c;
}
body.theme-light .auth-card{ backdrop-filter:none; }

/* العناوين والنصوص */
body.theme-light h1,
body.theme-light h2{ color:#15803d; }
body.theme-light .muted{ color:#6b8278; }
body.theme-light label{ color:#3f5a4e; }
body.theme-light .who .name{ color:#22332c; }
body.theme-light .brand h1{ color:#15803d; }

/* الشعار والأفاتار باللون الأخضر */
body.theme-light .brand-logo,
body.theme-light .avatar{
  background:linear-gradient(135deg,#22c55e,#15803d);
  box-shadow:0 8px 22px rgba(34,197,94,.35);
}

/* الحقول */
body.theme-light input,
body.theme-light select{
  background:#f7faf8;
  border:1px solid #cfe0d7;
  color:#22332c;
}
body.theme-light input::placeholder{ color:#9bb3a8; }
body.theme-light input:focus,
body.theme-light select:focus{
  border-color:#22c55e;
  box-shadow:0 0 0 3px rgba(34,197,94,.2);
}
body.theme-light .code-input{ color:#15803d; }

/* أزرار اختيار نوع الجهاز */
body.theme-light .type-btn{
  background:#f7faf8;
  border:2px solid #d6e6dd;
  color:#22332c;
}
body.theme-light .type-btn.active{
  border-color:#16a34a;
  background:#eafaf0;
  box-shadow:0 0 0 3px rgba(34,197,94,.18);
}

/* الأزرار الخضراء (دخول / توليد) */
body.theme-light .btn-primary,
body.theme-light .btn-success{
  background:linear-gradient(135deg,#22c55e,#16a34a);
  box-shadow:0 8px 22px rgba(34,197,94,.3);
  color:#fff;
}
body.theme-light .btn-ghost{
  background:#fff;
  border:1px solid #cfe0d7;
  color:#2f4a3e;
}
body.theme-light .btn-success:disabled{
  background:#cfe0d7;
  color:#7d958a;
  box-shadow:none;
}

/* صندوق النتيجة — أخضر فاتح */
body.theme-light .result-box{
  background:#eafaf0;
  border:1px solid #b9ecca;
}
body.theme-light .result-box .code{ color:#15803d; }
body.theme-light .result-box .lbl{ color:#6b8278; }
body.theme-light .result-box .placeholder{ color:#9bb3a8; }
body.theme-light .result-box.is-error{ background:#fdecec; border:1px solid #f5b5bb; }
body.theme-light .result-box.is-error .code{ color:#c0392b; }

/* الشارات على خلفية فاتحة */
body.theme-light .badge-user{ background:#e0f2fe; color:#0369a1; border:1px solid #bae6fd; }
body.theme-light .badge-super{ background:#ede9fe; color:#6d28d9; border:1px solid #ddd6fe; }

/* تنبيهات على خلفية فاتحة */
body.theme-light .alert-error{ background:#fdecec; border:1px solid #f5b5bb; color:#b3261e; }
body.theme-light .alert-success{ background:#e9f9ef; border:1px solid #b9ecca; color:#15803d; }
body.theme-light .alert-info{ background:#e0f2fe; border:1px solid #bae6fd; color:#0369a1; }
