/* Shoreless University — Lesson page additional styles */

/* Video wrapper */
.slms-video-wrap { position: relative; background: #000; border-radius: 8px; overflow: hidden; margin-bottom: 28px; box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.slms-video-wrap iframe { display: block; width: 100%; aspect-ratio: 16/9; border: none; }
.slms-video-progress-bar { height: 5px; background: rgba(255,255,255,.15); }
.slms-video-progress-bar__fill { height: 100%; background: #D4B96A; transition: width .5s linear; }

/* Quiz */
.slms-quiz-wrap { background: #fff; border: 1px solid #e0ddd6; border-radius: 8px; padding: 28px; margin-top: 28px; }
.slms-quiz-wrap h3 { font-size: 20px; margin: 0 0 24px; color: #1a1a2e; }
.slms-question { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid #f0ede8; }
.slms-question:last-of-type { border-bottom: none; }
.slms-question__text { font-weight: 700; font-size: 16px; margin-bottom: 14px; color: #1a1a2e; line-height: 1.5; }
.slms-answers { list-style: none; margin: 0; padding: 0; }
.slms-answer { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 2px solid #e0ddd6; border-radius: 6px; margin-bottom: 8px; cursor: pointer; transition: all .15s; }
.slms-answer:hover { border-color: #D4B96A; background: #fef9ec; }
.slms-answer label { cursor: pointer; font-size: 15px; flex: 1; }
.slms-answer--correct  { border-color: #27ae60 !important; background: #f0faf4 !important; }
.slms-answer--incorrect { border-color: #e74c3c !important; background: #fdf0f0 !important; }
.slms-quiz-result { padding: 20px 24px; border-radius: 8px; margin-top: 16px; }
.slms-quiz-result--pass { background: #d1e7dd; border: 1px solid #a8d5b5; }
.slms-quiz-result--fail { background: #f8d7da; border: 1px solid #f5c6cb; }
.slms-quiz-result h4 { font-size: 18px; margin: 0; }
.slms-explanation { font-size: 13px; color: #666; font-style: italic; margin-top: 8px; padding: 8px 12px; background: #f9f9f9; border-radius: 4px; border-left: 3px solid #D4B96A; }

/* Complete button area */
.slms-complete-wrap { margin-top: 32px; padding-top: 24px; border-top: 1px solid #e0ddd6; text-align: center; }
.slms-complete-notice { font-size: 14px; color: #888; margin-top: 12px; }

/* Progress bar (inline) */
.slms-progress { background: #e0ddd6; border-radius: 4px; height: 8px; overflow: hidden; }
.slms-progress__bar { background: #D4B96A; height: 100%; border-radius: 4px; transition: width .4s ease; }
