/* نمط التطبيق الوطني المدرسي - مِفتاح */
:root {
  --primary-emerald: #065F46;
  --primary-accent: #047857;
  --amber-accent: #D97706;
}

body {
  font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* صورة وشعار تطبيق مِفتاح الرسمي: نص أبيض على خلفية خضراء */
.miftah-app-icon {
  background: linear-gradient(135deg, #059669 0%, #047857 55%, #064e3b 100%);
  color: #ffffff !important;
  font-family: 'Tajawal', system-ui, sans-serif;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px solid rgba(167, 243, 208, 0.4);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.25);
  line-height: 1;
  letter-spacing: -0.2px;
  user-select: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.miftah-app-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(4, 120, 87, 0.4);
}

/* تنسيق أزرار التبديل */
.role-switch-btn {
  color: #d1fae5;
}
.role-switch-btn.active {
  background-color: #047857;
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  font-weight: 700;
}

/* بطاقات اختيار الحصة */
.period-radio-card input:checked + span {
  color: #065f46;
  font-weight: 800;
}

/* حركات وإشعارات ناعمة */
.toast-slide-in {
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes gentlePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(5, 150, 105, 0);
    transform: scale(1.01);
  }
}

.animate-pulse-gentle {
  animation: gentlePulse 2s infinite ease-in-out;
}

/* شاشة محاكاة جوال الإدارة المدرسية */
.phone-mockup {
  position: relative;
  background: #0f172a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 0 4px #334155;
  max-width: 360px;
  margin: 0 auto;
}

.phone-screen {
  background: #f8fafc;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
}

.phone-notch {
  width: 130px;
  height: 22px;
  background: #0f172a;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  margin: 0 auto;
}

/* أزرار الإدارة الكبيرة للجوال */
.btn-admin-allow {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  font-weight: 800;
  min-height: 52px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transition: all 0.2s ease;
}

.btn-admin-allow:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.2);
}

.btn-admin-deny {
  background: #ffffff;
  color: #b91c1c;
  border: 2px solid #f87171;
  font-weight: 800;
  min-height: 52px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.btn-admin-deny:active {
  background: #fef2f2;
  transform: scale(0.97);
}

/* زر وصل الطالب لولي الأمر */
.btn-student-arrived {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  color: #ffffff;
  border: 2px solid #34d399;
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.35);
  font-weight: 900;
  min-height: 50px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.btn-student-arrived:active {
  transform: scale(0.98);
}

/* شارات الحضور الملونة */
.badge-status-present {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.badge-status-absent {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.badge-status-excused {
  background-color: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.badge-status-unmarked {
  background-color: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

/* شريط التمرير */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}