/* أنماط مخصصة وإضافات جمالية */
body {
  font-family: 'Tajawal', sans-serif;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* إخفاء شريط التمرير الأفقي للأجهزة الصغيرة مع الحفاظ على التمرير */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes floatSubtle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float-subtle {
  animation: floatSubtle 3s ease-in-out infinite;
}

/* فقاعة إرشاد المرشدة التعليمية */
.mentor-speech-bubble {
  position: relative;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 1rem;
}
.mentor-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 24px;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #f0fdfa transparent;
  display: block;
  width: 0;
}

/* تنسيقات مخصصة لخيارات السؤال */
.quiz-opt-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz-opt-btn:active {
  transform: scale(0.98);
}

/* حالات الخيارات */
.opt-correct {
  background-color: #ecfdf5 !important;
  border-color: #10b981 !important;
  color: #065f46 !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.opt-wrong {
  background-color: #fef2f2 !important;
  border-color: #ef4444 !important;
  color: #991b1b !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* تحسينات الطباعة للشهادة */
@media print {
  body * {
    visibility: hidden;
  }
  #certificate-frame, #certificate-frame * {
    visibility: visible;
  }
  #certificate-frame {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0 !important;
    padding: 20px !important;
    border: none !important;
    box-shadow: none !important;
  }
  header, nav, footer, .tab-btn, button {
    display: none !important;
  }
}

/* مؤشر التبويب النشط */
.tab-btn.active {
  background-color: #ecfdf5;
  color: #047857;
  border-bottom: 2px solid #059669;
}