/* 📚 قسم الدروس */

/* البطاقة الخاصة بكل درس */
.lesson-card {
  background-color: #4B5563;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* التفاعل مع البطاقة عند التمرير عليها */
.lesson-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(122, 122, 122, 0.1);
}



/* زر الإطلاع على الدرس */
.lesson-card button {
  background-color: #2b6cb0;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* MENU*/

.menu-item {
  width: 100%;
  text-align: right;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.2s ease;
}

.menu-item:hover {
  background-color: rgba(34, 158, 217, 0.12);
  color: #229ED9;
}

.menu-item.active {
  background-color: rgba(34, 158, 217, 0.2);
  color: #229ED9;
}

.dark .menu-item {
  color: #e5e7eb;
}



.collapse {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.expand {
  max-height: 500px;
  opacity: 1;
}

/* تحسين عرض الأعمدة على الشاشات الكبيرة */
@media (min-width: 1024px) {
  #lessons-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) {
  #lessons-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* تحسين العرض على الأجهزة الصغيرة */
@media (max-width: 640px) {
  #lessons-list {
    grid-template-columns: 1fr;
  }
}
