.lecture-header {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
}

/* ألسنة المحاضرات (فيديوهات / PDF / واجبات / امتحانات...) */
.lecture-tabs {
  display: inline-flex;
  gap: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  padding: 4px;
  margin-bottom: 10px;
}

.lecture-tab {
  border: none;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
  color: #111827;
  transition: background 0.2s ease, color 0.2s ease;
}

.lecture-tab.is-active {
  background: #7f1225;
  color: #fef2f2;
}

/* لو تريد مظهر داكن في وضع الليل */
body.dark-mode .lecture-tabs {
  background: #111827;
}
body.dark-mode .lecture-tab {
  color: #e5e7eb;
}
body.dark-mode .lecture-tab.is-active {
  background: #f97316;
  color: #111827;
}

/* panels الخاصة بكل تبويب */
.lecture-tab-panel {
  display: none;
  margin-top: 6px;
}

.lecture-tab-panel.is-visible {
  display: block;
}

/* قائمة المحاضرات */
.lecture-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lecture-item {
  border-radius: 14px;
  padding: 10px 12px;
  background: #f9fafb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

body.dark-mode .lecture-item {
  background: #111827;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.lecture-item-title {
  font-weight: 900;
}

.lecture-item-meta {
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

/* زر تشغيل الفيديو / فتح المحتوى */
.lecture-item-btn {
  border-radius: 999px;
  border: none;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  background: #0f766e;
  color: #ecfdf5;
  transition: background 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.4);
}

.lecture-item-btn:hover:not(:disabled) {
  background: #115e59;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.55);
}

/* شكل الزر عند انتهاء المشاهدات */
.lecture-item-btn:disabled {
  background: #9ca3af;
  color: #f9fafb;
  cursor: not-allowed;
  opacity: 0.8;
  box-shadow: none;
}

/* منطقة تشغيل الفيديو داخل صفحة المحاضرة */
.lecture-video-player-wrap {
  border-radius: 16px;
  padding: 10px 12px;
  margin-top: 8px;
  background: #f9fafb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

body.dark-mode .lecture-video-player-wrap {
  background: #020617;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
}

.lecture-video-meta {
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 6px;
}

body.dark-mode .lecture-video-meta {
  color: #d1d5db;
}

#lectureVideoPlayer iframe {
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  border: none;
}

.lecture-video-info {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
}

body.dark-mode .lecture-video-info {
  color: #d1d5db;
}

@media (max-width: 768px) {
  .lecture-item {
    flex-direction: column;
    align-items: flex-start;
  }

  #lectureVideoPlayer iframe {
    min-height: 220px;
  }

  .lecture-tabs {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}