/* cvl-course.css - Modern Learning Environment Theme */
.cvl-course-page {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8EDF2 100%);
  color: #1a1a1a;
  min-height: 100vh;
}

.cvl-container {
  font-family: inherit;
  background: transparent;
}

/* Progress bar fill - Deep Blue Theme */
/* .cvl-progress-fill { 
  background: linear-gradient(90deg, #2563EB, #1E40AF) !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
  border-radius: 8px;
} */
.cvl-progress-fill {
  background: linear-gradient(90deg, #93b5ff, #ffd700) !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
  border-radius: 8px;
}

/* Gold for 100% completion (achievement) */
/* .cvl-progress-fill.cvl-progress-complete {
  background: linear-gradient(90deg, #F6D365, #FDA085) !important;
  box-shadow: 0 2px 10px rgba(246, 211, 101, 0.5);
} */
.cvl-progress-fill.cvl-progress-complete {
  background: #ffd700 !important;
  box-shadow: 0 2px 10px rgba(246, 211, 101, 0.5);
}



.cvl-complete-btn {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cvl-complete-btn:hover:not(.completed):not(.cvl-complete-locked) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
}

.cvl-complete-btn.completed {
  background: #ffd700 !important;
  color: #111 !important;
}

.cvl-complete-btn.cvl-complete-locked {
  background: #ddd !important;
  color: #666 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}


/* Mobile: remove sticky behavior (keeps previous mobile rules) */
@media (max-width: 920px) {
  .cvl-sidebar {
    position: static !important;
    top: auto !important;
    max-height: none !important;
  }
}

/* Hide Explore My Courses on mobile */
@media (max-width: 920px) {
  .cvl-explore-btn {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}


/* Small responsive tweaks */
/* @media (max-width: 920px) {
  .cvl-header-card { flex-direction:column; align-items:flex-start; }
  .cvl-container { padding: 20px; }
  .cvl-course-page .cvl-videos, .cvl-course-page .cvl-sidebar { grid-column: 1 / -1; }
  .cvl-course-layout {
    grid-template-columns: 1fr;
  }
} */

@media (max-width: 920px) {
  .cvl-header-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cvl-container {
    padding: 20px;
  }

  /* Make layout single column ONLY on mobile */
  .cvl-course-layout {
    grid-template-columns: 1fr !important;
  }

  .cvl-videos,
  .cvl-sidebar {
    grid-column: 1 / -1 !important;
  }
}




/* Mobile rules - keep normal flow */
@media (max-width: 920px) {
  .cvl-course-layout {
    grid-template-columns: 1fr !important;
  }

  .cvl-videos,
  .cvl-sidebar {
    grid-column: 1 / -1 !important;
  }

  .cvl-sidebar {
    position: static !important;
    top: auto !important;
    max-height: none !important;
  }

  .cvl-explore-btn {
    display: none !important;
  }
}





/********************************************
  FIX #2 — Sidebar ABOVE videos on mobile
*********************************************/
@media (max-width: 920px) {

  /* Make mobile layout vertical */
  .cvl-course-layout {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Sidebar first */
  .cvl-sidebar {
    order: 1 !important;
    position: static !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  /* Videos list after sidebar */
  .cvl-videos {
    order: 2 !important;
  }
}






/********************************************
  TEACHABLE STYLE UPGRADE — PHASE 1
  (Cleaner typography, spacing & card feel)
*********************************************/

/* Global font improvements */
.cvl-course-page h1,
.cvl-course-page h2,
.cvl-course-page h3,
.cvl-course-page h4 {
  font-weight: 700 !important;
  letter-spacing: -0.3px;
}

.cvl-course-page p,
.cvl-course-page li {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Modern course title */
.cvl-header-meta h1 {
  font-size: 36px !important;
  margin-bottom: 12px !important;
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800 !important;
}

/* Modern course thumbnail */
.cvl-thumb img {
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2) !important;
  border: 3px solid rgba(37, 99, 235, 0.1);
}

/* Header description text */
.cvl-header-meta>div {
  font-size: 16px;
  color: #4A5568 !important;
  line-height: 1.6 !important;
  font-weight: 400;
}

/* Modern video cards */
.cvl-video-item {
  border-radius: 16px !important;
  border: none !important;
  background: #fff !important;
  padding: 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 20px !important;
}

/* Unlocked video cards - Deep Blue gradient accent */
.cvl-video-item.cvl-video-unlocked {
  border-left: 5px solid transparent !important;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1 !important;
  background: linear-gradient(to right, #fff 0%, #EFF6FF 100%) !important;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.15) !important;
}

.cvl-video-item.cvl-video-unlocked:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2) !important;
  background: linear-gradient(to right, #fff 0%, #DBEAFE 100%) !important;
}

/* Locked video cards - muted appearance */
.cvl-video-item:not(.cvl-video-unlocked) {
  opacity: 0.7;
  background: #F5F7FA !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

/* Modern video title style */
.cvl-video-item h3 {
  font-size: 20px !important;
  color: #1a1a1a !important;
  letter-spacing: -0.3px;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

/* Modern video container */
.cvl-player video {
  border-radius: 16px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(37, 99, 235, 0.1);
}

/* Modern sidebar card */
.cvl-sidebar>div {
  background: linear-gradient(135deg, #fff 0%, #EFF6FF 100%) !important;
  border: none !important;
  border-left: 5px solid transparent !important;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1 !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12) !important;
}

/* Sidebar heading style */
.cvl-sidebar h4 {
  font-size: 20px !important;
  margin-bottom: 10px !important;
}

/* Progress percentage bigger */
.cvl-sidebar .cvl-progress-percent {
  font-size: 27px !important;
  font-weight: 700;
}

/* Complete button — more modern */
.cvl-complete-ui {
  padding: 9px 18px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Completed state — softer yellow */
.cvl-complete-ui.completed {
  background: #ffd700 !important;
  color: #111 !important;
}

/* Explore My Courses button — more modern */
.cvl-explore-btn a {
  padding: 12px 20px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
}









/* Full-width header container */
.cvl-container.fullwidth {
  max-width: 100% !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  /* breaks out of theme container */
  margin-right: calc(50% - 50vw) !important;
  /* breaks out of theme container */
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* Full-width progress bar inside header */
.cvl-header-meta .cvl-progress {
  max-width: 100% !important;
  width: 100% !important;
}

.cvl-header-meta .cvl-progress>div:first-child {
  width: 100% !important;
}

.cvl-header-meta .cvl-progress-fill {
  height: 14px !important;
}




/* Larger course thumbnail */
.cvl-thumb img {
  height: 200px !important;
  width: auto !important;
  border-radius: 10px !important;
}

.cvl-thumb {
  flex: 0 0 200px !important;
}











.cvl-quiz-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: flex-start;
}

.cvl-quiz-main {
  background: transparent;
}

.cvl-quiz-sidebar {
  position: sticky;
  top: 120px;
}

.cvl-quiz-result-box,
.cvl-quiz-attempts-box {
  background: linear-gradient(135deg, #fff 0%, #EFF6FF 100%);
  border: none;
  border-left: 5px solid transparent;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.cvl-quiz-result-box h4,
.cvl-quiz-attempts-box h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #111;
}

.cvl-attempts-list {
  margin: 0;
  padding-left: 18px;
}

.cvl-attempts-list li {
  margin-bottom: 6px;
  font-size: 14px;
}


.cvl-answer.correct {
  background: #e6f9ed;
  border: 1px solid #2ecc71;
}

.cvl-answer.wrong {
  background: #fdecea;
  border: 1px solid #e74c3c;
}

.cvl-answer.correct {
  background: #e6f9ed;
  border: 2px solid #2ecc71;
}

.cvl-answer.wrong {
  background: #fdecea;
  border: 2px solid #e74c3c;
}



.cvl-answer {
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}




/* ===============================
   QUESTION CARD STATES
================================ */

.cvl-question-card {
  margin-bottom: 24px;
  padding: 24px;
  border: none;
  border-left: 5px solid transparent;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1;
  border-radius: 16px;
  background: linear-gradient(to right, #fff 0%, #EFF6FF 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.cvl-question-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  background: linear-gradient(to right, #fff 0%, #DBEAFE 100%);
}

.cvl-question-card.question-correct {
  background: #e6f9ed;
  border-color: #2ecc71;
}

.cvl-question-card.question-wrong {
  background: #fdecea;
  border-color: #e74c3c;
}

/* ===============================
   ANSWER STATES
================================ */

.cvl-answer {
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  display: block;
}

.cvl-answer.answer-selected {
  border: 2px solid #2ecc71;
  background: #ffffff;
}

.cvl-answer.answer-wrong-selected {
  border: 2px solid #e74c3c;
  background: #fff;
}

.cvl-answer.answer-correct {
  border: 2px solid #2ecc71;
  background: #e6f9ed;
  font-weight: 600;
}



/* ===============================
   DISABLED SUBMIT BUTTON
================================ */

.cvl-course-quiz button[type="submit"].cvl-submit-disabled {
  background: #bbb !important;
  color: #555 !important;
  cursor: not-allowed;
  opacity: 0.7;
}






/* ===============================
   ATTEMPT QUIZ BUTTON
================================ */

.cvl-attempt-quiz-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cvl-attempt-quiz-btn:hover:not(.cvl-quiz-locked) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
}




/* ===============================
   QUIZ PAGE TITLE
================================ */

.cvl-quiz-title {
  font-size: 32px;
  /* smaller than default */
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.2;
  color: #111;
}



/* ===============================
   QUIZ RESULT UI
================================ */

.cvl-result-summary {
  text-align: center;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111, #333);
  color: #fff;
}

.cvl-result-score {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.cvl-result-meta {
  font-size: 15px;
  opacity: 0.9;
}



.cvl-quiz-result.pass .cvl-result-summary {
  background: linear-gradient(135deg, #1e7f4f, #2ecc71);
}

.cvl-quiz-result.fail .cvl-result-summary {
  background: linear-gradient(135deg, #8e2c2c, #e74c3c);
}

/* 🟠 NEUTRAL (50%–79%) */
.cvl-quiz-result.neutral .cvl-result-summary {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}









/* =========================
   QUIZ — MOBILE LAYOUT
   ========================= */

@media (max-width: 900px) {

  .cvl-quiz-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Sidebar comes first on mobile */
  .cvl-quiz-sidebar {
    order: -1;
    position: static;
    /* remove sticky */
    top: auto;
  }

  .cvl-quiz-main {
    order: 2;
  }

  .cvl-quiz-result-box,
  .cvl-quiz-attempts-box {
    padding: 18px;
  }

}

@media (max-width: 900px) {

  .cvl-quiz-main h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .cvl-answer {
    padding: 12px;
    font-size: 15px;
  }

  .cvl-course-quiz button[type="submit"] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

}



.cvl-attempt-quiz-btn.cvl-quiz-locked {
  background: #ddd;
  color: #666;
  cursor: not-allowed;
  pointer-events: none;
  border: 2px dashed #aaa;
}

.cvl-quiz-locked {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}




/* ==============================
   🎉 COMPLETION MODAL
================================ */

.cvl-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cvl-modal-box {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  animation: cvlPop 0.35s ease-out;
}

.cvl-modal-box h2 {
  margin-bottom: 10px;
}

.cvl-modal-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cvl-modal-download-btn {
  display: inline-block;
  padding: 12px 18px;
  background: linear-gradient(135deg, #c9a227, #f4d03f);
  color: #111;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.cvl-modal-close {
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 14px;
}

@keyframes cvlPop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==============================
   TWO-BUTTON ALERT (CUSTOM)
================================ */
.cvl-alert-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 16px;
}

.cvl-alert-box {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cvl-alert-box h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 20px;
}

.cvl-alert-box p {
  margin: 0;
  color: #444;
}

.cvl-alert-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.cvl-alert-buttons button {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cvl-alert-primary {
  background: linear-gradient(135deg, #c9a227, #f4d03f);
  color: #111;
}

.cvl-alert-secondary {
  background: #f2f2f2;
  color: #333;
}

/* ==============================
   BLUE FOCUS THEME - ADDITIONAL ACCENTS
================================ */

/* Quiz submit button - Deep Blue gradient */
.cvl-course-quiz button[type="submit"]:not(.cvl-submit-disabled) {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%) !important;
  color: #fff !important;
  border: none !important;
  padding: 14px 28px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cvl-course-quiz button[type="submit"]:not(.cvl-submit-disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%) !important;
}

/* Links in course page - Deep Blue */
.cvl-course-page a:not(.cvl-modal-download-btn):not(.cvl-attempt-quiz-btn):not(.cvl-certificate-btn a) {
  color: #2563EB;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.cvl-course-page a:not(.cvl-modal-download-btn):not(.cvl-attempt-quiz-btn):not(.cvl-certificate-btn a):hover {
  color: #1E40AF;
  border-bottom-color: #1E40AF;
}

/* Progress text - Deep Blue gradient accent */
.cvl-course-page .cvl-progress-percent {
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.15em;
}

/* Video card focus state */
.cvl-video-item:focus-within {
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25) !important;
  transform: translateY(-2px);
}

/* Sidebar progress section - Deep Blue gradient accent */
.cvl-sidebar .cvl-progress {
  border-left: 5px solid transparent;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1;
  padding-left: 16px;
  margin-left: -5px;
}

/* ==============================
   DOWNLOADABLE FILES SECTION
================================ */
.cvl-video-downloads {
  margin-top: 16px;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F8F9FF 0%, #EFF6FF 100%);
  border-left: 4px solid transparent;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
  transition: all 0.3s ease;
}

.cvl-video-downloads:hover {
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
  background: linear-gradient(135deg, #F0F4FF 0%, #E8F0FF 100%);
}

.cvl-downloads-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(37, 99, 235, 0.15);
}

.cvl-downloads-icon {
  font-size: 20px;
  line-height: 1;
}

.cvl-downloads-title {
  display: block;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0;
}

.cvl-downloads-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cvl-download-item {
  margin: 0;
  padding: 0;
}

/* =================================
   RTL SUPPORT FOR BLUE ACCENTS
================================= */
body.rtl .cvl-video-item.cvl-video-unlocked {
  border-left: 0 !important;
  border-right: 5px solid transparent !important;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1 !important;
  background: linear-gradient(to left, #fff 0%, #EFF6FF 100%) !important;
}

body.rtl .cvl-video-item.cvl-video-unlocked:hover {
  background: linear-gradient(to left, #fff 0%, #DBEAFE 100%) !important;
}

body.rtl .cvl-sidebar>div {
  border-left: 0 !important;
  border-right: 5px solid transparent !important;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1 !important;
}

body.rtl .cvl-sidebar .cvl-progress {
  border-left: 0;
  border-right: 5px solid transparent;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1;
  padding-left: 0;
  padding-right: 16px;
  margin-left: 0;
  margin-right: -5px;
}

body.rtl .cvl-quiz-result-box,
body.rtl .cvl-quiz-attempts-box {
  border-left: 0;
  border-right: 5px solid transparent;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1;
}

body.rtl .cvl-question-card {
  border-left: 0;
  border-right: 5px solid transparent;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1;
  background: linear-gradient(to left, #fff 0%, #EFF6FF 100%);
}

body.rtl .cvl-question-card:hover {
  transform: translateX(-4px);
  background: linear-gradient(to left, #fff 0%, #DBEAFE 100%);
}

body.rtl .cvl-video-downloads {
  border-left: 0;
  border-right: 4px solid transparent;
  border-image: linear-gradient(135deg, #2563EB, #1E40AF) 1;
}

.cvl-download-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.cvl-download-link:hover {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-color: #2563EB;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  color: #2563EB;
}

.cvl-download-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.cvl-download-name {
  flex: 1;
  font-weight: 500;
}

.cvl-download-size {
  font-size: 12px;
  color: #666;
  background: rgba(37, 99, 235, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
}

.cvl-download-link:hover .cvl-download-size {
  background: rgba(37, 99, 235, 0.2);
  color: #2563EB;
}

/* Quiz String Separation */
.cvl-question-number {
  font-weight: 700;
  color: #111;
  margin-right: 4px;
}

.cvl-question-text {
  /* Maintain current H3 styling */
}

.cvl-answer-letter {
  font-weight: 600;
  color: #333;
  margin-right: 4px;
  display: inline-block;
  min-width: 25px;
}

.cvl-answer-text {
  /* Maintain current label styling */
}

/* Mobile adjustments */
@media (max-width: 768px) {

  .cvl-video-downloads {
    padding: 16px;
  }

  .cvl-download-link {
    padding: 10px 14px;
    font-size: 13px;
  }

  .cvl-downloads-title {
    font-size: 15px;
  }
}