/* أنماط مخصصة لنظام إذاعة مدرستي */
:root {
  --app-font: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--app-font);
  background-color: #F3F6F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-cairo {
  font-family: var(--app-font);
}

/* بطاقات لوحة التحكم مع لمسات تفاعلية */
.admin-nav-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.admin-nav-card:active {
  transform: scale(0.98);
}

/* تخصيص شريط التمرير */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #EAEFEA;
}
::-webkit-scrollbar-thumb {
  background: #A2B9A8;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1E5E3A;
}

/* شارات الحالة */
.badge-active {
  background-color: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
}

.badge-suspended {
  background-color: #FEE2E2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

/* الرسوم المتحركة الخفيفة */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-view {
  animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

input:focus, select:focus, textarea:focus {
  outline: none;
}