/* /assets/css/lms-templates.css */

/* NCERT / LMS MODULE SMART STYLES */
.lms-module-wrapper { box-sizing: border-box; width: 100%; margin: 0 auto; background-color: #f4f7f6; padding: 15px; border-radius: 12px; color: #333; font-family: var(--font-ui);}
.lms-module-wrapper * { box-sizing: border-box; }
.lms-header { background: linear-gradient(135deg, #1A2980 0%, #26D0CE 100%); color: #fff; padding: 20px; text-align: center; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
.lms-header-title { margin: 0; font-size: 2.2rem; letter-spacing: -0.5px; font-weight: 800; text-transform: uppercase; font-family: var(--font-read);}
.lms-header-subtitle { font-size: 1.1rem; margin-top: 8px; opacity: 0.9; font-weight: 500; }
.lms-section { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.lms-content-card { width: 100%; background: #ffffff; padding: 25px; border-radius: 12px; border-top: 5px solid #ccc; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.lms-quiz-card { width: 100%; background: #2c3e50; color: #ecf0f1; padding: 25px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.15); display: flex; flex-direction: column; justify-content: flex-start; }
.lms-h2 { font-size: 1.6rem; margin-top: 0; border-bottom: 2px solid #eee; padding-bottom: 8px; margin-bottom: 15px; font-family: var(--font-ui); font-weight: 700; color: var(--color-text-head);}
.lms-h3 { font-size: 1.2rem; margin-top: 10px; margin-bottom: 10px; color: #444; font-family: var(--font-ui); font-weight: 700;}
.lms-p { font-size: 1.05rem; line-height: 1.6; margin-bottom: 15px; }

/* Vibrant Highlight Classes */
.hl-red { color: #D32F2F; font-weight: 700; background: #FFEBEE; padding: 2px 6px; border-radius: 4px; }
.hl-green { color: #2E7D32; font-weight: 700; background: #E8F5E9; padding: 2px 6px; border-radius: 4px; }
.hl-blue { color: #1565C0; font-weight: 700; background: #E3F2FD; padding: 2px 6px; border-radius: 4px; }
.hl-orange { color: #E65100; font-weight: 700; background: #FFF3E0; padding: 2px 6px; border-radius: 4px; }
.hl-purple { color: #6A1B9A; font-weight: 700; background: #F3E5F5; padding: 2px 6px; border-radius: 4px; }

/* In-Module Quiz Styles */
.lms-quiz-card .quiz-title { color: #f1c40f; font-size: 1.3rem; margin-top: 0; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 8px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-ui);}
.lms-quiz-card .quiz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lms-quiz-card .q-box { background: rgba(255,255,255,0.05); padding: 12px; border-radius: 8px; border-left: 4px solid #f39c12; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; }
.lms-quiz-card .q-text { display: block; font-weight: 600; margin-bottom: 10px; font-size: 0.95rem; line-height: 1.4; color: #fff; font-family: var(--font-ui);}
.lms-quiz-card .q-ans { display: inline-block; background: #27ae60; color: white; padding: 4px 8px; border-radius: 4px; font-size: 0.85rem; font-weight: bold; }

@media (max-width: 768px) {
    .lms-header-title { font-size: 1.6rem; }
    .lms-content-card, .lms-quiz-card { padding: 15px; }
    .lms-quiz-card .quiz-grid { grid-template-columns: 1fr; }
}