/* ═══════════════════════════════════════════════════════════════ Exam Preparation Module — shared styles Used by exam-prep*.html pages. ═══════════════════════════════════════════════════════════════ */ .sb-content { padding: 0; overflow-y: auto; } /* ── Outer wrapper ─────────────────────────────────────────────── */ .ep-wrap { max-width: 1080px; margin: 0 auto; padding: 28px 24px 80px; width: 100%; } /* ── Page header ───────────────────────────────────────────────── */ .ep-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; } .ep-icon { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; background: linear-gradient(135deg, rgba(155,93,229,.22), rgba(6,214,224,.16)); border: 1.5px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; } .ep-icon svg { width: 26px; height: 26px; stroke: var(--violet); stroke-width: 1.8; fill: none; } .ep-title { font-family: 'Unbounded', sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; } .ep-sub { font-size: .82rem; color: var(--text-2); margin-top: 2px; } /* ── Tabs bar ──────────────────────────────────────────────────── */ .ep-tabs { display: flex; gap: 4px; margin: 18px 0 26px; border-bottom: 1.5px solid var(--border); overflow-x: auto; } .ep-tab { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; font-family: 'Manrope', sans-serif; font-size: .9rem; font-weight: 600; color: var(--text-2); text-decoration: none; border-bottom: 2.5px solid transparent; transition: color .15s, border-color .15s; white-space: nowrap; } .ep-tab:hover { color: var(--violet); } .ep-tab.active { color: var(--violet); border-bottom-color: var(--violet); } .ep-tab svg { width: 15px; height: 15px; stroke-width: 2; } /* ── Cards / sections ──────────────────────────────────────────── */ .ep-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: 14px; padding: 20px 22px; margin-bottom: 16px; transition: border-color .15s; } .ep-card:hover { border-color: var(--border-h); } .ep-card h3 { font-family: 'Unbounded', sans-serif; font-size: 1rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -.01em; } .ep-card .ep-card-hint { font-size: .8rem; color: var(--text-3); margin-bottom: 14px; } /* ── Stat grid for dashboard ───────────────────────────────────── */ .ep-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 24px; } .ep-stat { background: var(--surface); border: 1.5px solid var(--border); border-radius: 12px; padding: 16px 18px; } .ep-stat-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--text-3); margin-bottom: 8px; } .ep-stat-value { font-family: 'Unbounded', sans-serif; font-size: 1.5rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; color: var(--text); } .ep-stat-value.ep-violet { color: var(--violet); } .ep-stat-value.ep-good { color: #06D6A0; } .ep-stat-value.ep-warn { color: #F8961E; } .ep-stat-sub { font-size: .72rem; color: var(--text-3); margin-top: 4px; } /* ── Progress bar ──────────────────────────────────────────────── */ .ep-bar { height: 8px; background: rgba(155,93,229,.10); border-radius: 999px; overflow: hidden; margin-top: 10px; } .ep-bar-fill { height: 100%; background: linear-gradient(90deg, var(--violet), #06D6E0); border-radius: 999px; transition: width .35s ease; } /* ── Empty / placeholder state ─────────────────────────────────── */ .ep-empty { padding: 56px 20px; text-align: center; color: var(--text-3); } .ep-empty svg { width: 44px; height: 44px; opacity: .45; margin-bottom: 12px; stroke: var(--text-3); stroke-width: 1.5; fill: none; } .ep-empty h4 { font-family: 'Unbounded', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-2); margin-bottom: 6px; } .ep-empty p { font-size: .85rem; max-width: 380px; margin: 0 auto; } /* ── CTA action buttons ────────────────────────────────────────── */ .ep-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; } .ep-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border: 1.5px solid var(--violet); border-radius: 10px; background: rgba(155,93,229,.08); color: var(--violet); font-family: 'Manrope', sans-serif; font-size: .88rem; font-weight: 700; cursor: pointer; transition: all .15s; text-decoration: none; } .ep-btn:hover { background: var(--violet); color: #fff; } .ep-btn.ep-btn-primary { background: var(--violet); color: #fff; } .ep-btn.ep-btn-primary:hover { filter: brightness(1.08); } .ep-btn svg { width: 14px; height: 14px; stroke-width: 2; } /* ── Skeleton loaders ──────────────────────────────────────────── */ .ep-skel { background: linear-gradient(90deg, rgba(15,23,42,.05) 0%, rgba(15,23,42,.10) 50%, rgba(15,23,42,.05) 100%); background-size: 200% 100%; animation: ep-skel-anim 1.4s ease-in-out infinite; border-radius: 6px; display: inline-block; } @keyframes ep-skel-anim { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } } /* ── Mobile tweaks ─────────────────────────────────────────────── */ @media (max-width: 640px) { .ep-wrap { padding: 20px 16px 60px; } .ep-title { font-size: 1.15rem; } .ep-tabs { gap: 0; } .ep-tab { padding: 9px 12px; font-size: .82rem; } .ep-card { padding: 16px 18px; } .ep-stat { padding: 14px 16px; } }