/* ── LMS Plugin – public styles ───────────────────────────────────────────── */

.lms-lesson,
.lms-dashboard { max-width: 860px; margin: 0 auto; padding: 20px; font-family: inherit; }

/* Day badge */
.lms-day-badge {
    display: inline-block;
    background: #4f46e5;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Video */
.lms-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}
.lms-video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* Notes */
.lms-notes { margin: 30px 0; line-height: 1.8; }
.lms-notes h2 { font-size: 1.2em; border-bottom: 2px solid #eee; padding-bottom: 8px; }

/* PDFs */
.lms-pdfs { margin: 24px 0; }
.lms-pdfs h2 { font-size: 1.2em; }
.lms-pdfs ul { list-style: none; padding: 0; }
.lms-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin: 6px 0;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background .15s;
}
.lms-pdf-link:hover { background: #e8e8e8; }

/* Buttons */
.lms-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #4f46e5;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
}
.lms-btn:hover { background: #4338ca; }
.lms-btn:disabled { background: #999; cursor: not-allowed; }

/* Complete wrap */
.lms-complete-wrap { margin: 30px 0; }

/* Quiz */
.lms-quiz { margin: 36px 0; }
.lms-quiz h2 { font-size: 1.3em; margin-bottom: 16px; }
.lms-quiz-note { color: #555; margin-bottom: 20px; }
.lms-question { margin-bottom: 24px; }
.lms-q-text { margin-bottom: 8px; }
.lms-options { list-style: none; padding: 0; }
.lms-options li { margin: 6px 0; }
.lms-options label { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.lms-options input[type=radio] { width: 18px; height: 18px; accent-color: #4f46e5; }

/* Status messages */
.lms-success { color: #16a34a; font-weight: 600; margin: 16px 0; }
.lms-error   { color: #dc2626; font-weight: 600; margin: 16px 0; }
.lms-hidden  { display: none; }

/* ── Dashboard ─────────────────────────────────────────────────────────────── */
.lms-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}
.lms-course-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.lms-course-thumb img { width: 100%; height: 160px; object-fit: cover; display: block; }
.lms-course-body { padding: 18px; }
.lms-course-body h3 { margin: 0 0 14px; font-size: 1.05em; }

/* Progress bar */
.lms-progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}
.lms-progress-fill {
    height: 100%;
    background: #4f46e5;
    border-radius: 4px;
    transition: width .4s;
}
.lms-progress-label { font-size: 13px; color: #666; margin-bottom: 14px; }
