/* MedConnect Synapse — Student Frontend
   Brand: Navy #192F59 · Gold #E9BE00 · Grey #54595F · Text #7A7A7A · Light #F7F7F7
*/

/* ---- Fonts ---- */
@font-face {
	font-family: 'Karla';
	src: url('https://medconnecteurope.co.uk/wp-content/uploads/fonts/Karla-Regular.woff2') format('woff2'),
	     url('https://medconnecteurope.co.uk/wp-content/uploads/fonts/Karla-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Karla';
	src: url('https://medconnecteurope.co.uk/wp-content/uploads/fonts/Karla-Medium.woff2') format('woff2'),
	     url('https://medconnecteurope.co.uk/wp-content/uploads/fonts/Karla-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Rubik';
	src: url('https://medconnecteurope.co.uk/wp-content/uploads/fonts/Rubik-SemiBold.woff2') format('woff2'),
	     url('https://medconnecteurope.co.uk/wp-content/uploads/fonts/Rubik-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* ---- Shared ---- */
.synapse-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 32px 40px;
	font-family: 'Karla', Arial, sans-serif;
	font-weight: 400;
	color: #7A7A7A;
}

.synapse-wrap h1,
.synapse-wrap h2,
.synapse-wrap h3 {
	font-family: 'Rubik', Arial, sans-serif;
	font-weight: 600;
	color: #192F59;
}

/* ---- Buttons ---- */
.btn {
	display: inline-block;
	padding: 9px 20px;
	border-radius: 4px;
	border: 2px solid transparent;
	cursor: pointer;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 0.9em;
	font-weight: 500;
	text-decoration: none;
	line-height: 1.4;
	transition: background 0.15s, color 0.15s;
}
.btn-primary  { background: #E9BE00; color: #192F59; border-color: #E9BE00; font-weight: 600; }
.btn-primary:hover { background: #d4ac00; border-color: #d4ac00; color: #192F59; }
.btn-primary:disabled { background: #ccc; border-color: #ccc; color: #666; cursor: default; }
.btn-navy  { background: #192F59; color: #fff; border-color: #192F59; font-weight: 600; }
.btn-navy:hover { background: #0d1f3c; border-color: #0d1f3c; color: #fff; }
.btn-secondary { background: #fff; color: #192F59; border-color: #192F59; }
.btn-secondary:hover { background: #f0f3f8; }
.btn-secondary:disabled { opacity: 0.5; cursor: default; }
.btn-full { width: 100%; text-align: center; padding: 11px; font-size: 1em; box-sizing: border-box; }

/* ---- Auth pages (login / set-password / forgot-password) ---- */
.auth-screen {
	background: #192F59;
	min-height: 100vh;
	width: 100%;
	font-family: 'Karla', Arial, sans-serif;
	padding: 60px 40px;
	box-sizing: border-box;
}

.auth-inner {
	max-width: 420px;
	margin: 0 auto;
}

.auth-logo {
	width: 64px;
	height: auto;
	display: block;
	margin-bottom: 16px;
}
.header-logo { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }

.auth-brand-label {
	font-size: 0.78em;
	font-weight: 500;
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 24px;
}
.auth-screen .auth-heading {
	font-family: 'Rubik', Arial, sans-serif !important;
	font-size: 1.8em !important;
	font-weight: 600 !important;
	color: #fff !important;
	margin: 0 0 6px !important;
}
.auth-screen .auth-desc {
	font-size: 0.9em;
	color: rgba(255,255,255,0.6) !important;
	margin: 0 0 28px;
}
.auth-error {
	background: #fdecea;
	color: #c0392b;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	padding: 10px 14px;
	font-size: 0.9em;
	margin-bottom: 20px;
}
.auth-notice {
	background: #fefbe6;
	border: 1px solid #E9BE00;
	border-radius: 4px;
	padding: 12px 16px;
	font-size: 0.9em;
	color: #192F59;
	font-weight: 500;
	margin-bottom: 20px;
}

.login-error {
	background: #fdecea;
	color: #c0392b;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	padding: 10px 14px;
	font-size: 0.9em;
	margin-bottom: 16px;
}

.auth-screen .login-form .field { margin-bottom: 16px; }
.auth-screen .login-form label  { display: block; font-size: 0.85em; font-weight: 500; color: rgba(255,255,255,0.8) !important; margin-bottom: 5px; }
.auth-screen .login-form input[type="text"],
.auth-screen .login-form input[type="password"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 4px;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 0.95em;
	box-sizing: border-box;
	color: #333;
	background: #fff;
}
.auth-screen .login-form input:focus {
	outline: none;
	border-color: #E9BE00;
	box-shadow: 0 0 0 2px rgba(233, 190, 0, 0.3);
}

.auth-screen .login-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	gap: 12px;
	margin-bottom: 20px;
	font-size: 0.85em;
	color: rgba(255,255,255,0.7) !important;
	white-space: nowrap;
}
.auth-screen .remember { display: flex; align-items: center; gap: 6px; cursor: pointer; color: rgba(255,255,255,0.7) !important; }
.auth-screen .forgot   { color: #E9BE00 !important; text-decoration: none; font-weight: 500; }
.auth-screen .forgot:hover { text-decoration: underline; }

/* ---- Auth form layout (reuses dash-header styles) ---- */
.synapse-auth-page {
	background: #192F59 !important;
}
.synapse-auth-body {
	min-height: 100vh !important;
	padding: 60px 40px !important;
	box-sizing: border-box;
}
.synapse-auth-inner {
	max-width: 420px;
}
.dash-header .login-form label {
	color: rgba(255,255,255,0.8) !important;
}
.dash-header .login-row {
	color: rgba(255,255,255,0.7) !important;
}
.dash-header .remember {
	color: rgba(255,255,255,0.7) !important;
}
.dash-header .forgot {
	color: #E9BE00 !important;
	text-decoration: none;
}

/* ---- Dashboard ---- */
.synapse-dashboard {
	background: #fff;
	border-radius: 0;
	padding: 0;
	overflow: hidden;
	margin: 0;
	min-height: 100vh;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.dash-header {
	background: #192F59;
	padding: 28px 40px;
	margin-bottom: 0;
}
.dash-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.dash-brand {
	font-size: 0.75em;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}
.dash-header h1 {
	font-family: 'Rubik', Arial, sans-serif;
	font-size: 1.6em;
	font-weight: 600;
	color: #fff;
	margin: 0 0 3px;
}
.dash-header p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85em;
	margin: 0;
}

.btn-ghost {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: transparent;
	color: #fff;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 0.9em;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s;
	white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

.btn-ghost-sm {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 4px;
	border: 1px solid #192F59;
	background: transparent;
	color: #192F59;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 0.8em;
	text-decoration: none;
	transition: background 0.15s;
}
.btn-ghost-sm:hover { background: #f0f3f8; }

.dash-body { padding: 32px 40px; }

.dash-section { margin-bottom: 36px; }
.dash-section-title {
	font-family: 'Rubik', Arial, sans-serif;
	font-size: 0.72em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #54595F;
	margin: 0 0 14px;
}

.dash-empty { color: #7A7A7A; }

.test-list { list-style: none; margin: 0; padding: 0; }
.test-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	border: 1px solid #e8e8e8;
	border-left: 4px solid #192F59;
	border-radius: 6px;
	margin-bottom: 8px;
	background: #fff;
	flex-wrap: wrap;
	gap: 10px;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.test-item:hover { border-color: #192F59; box-shadow: 0 2px 8px rgba(25,47,89,0.08); }
.test-info strong { display: block; font-size: 1em; color: #192F59; margin-bottom: 4px; font-weight: 600; }
.test-meta { font-size: 0.85em; color: #54595F; }
.test-meta span { margin-right: 12px; }
.test-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.attempts-label { font-size: 0.85em; color: #54595F; }

.results-card {
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	overflow: hidden;
}
.results-card table { width: 100%; border-collapse: collapse; font-size: 0.9em; }
.results-card th {
	text-align: left;
	padding: 10px 14px;
	background: #E9BE00;
	color: #192F59;
	font-family: 'Rubik', Arial, sans-serif;
	font-size: 0.8em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.results-card td {
	text-align: left;
	padding: 11px 14px;
	border-bottom: 1px solid #f0f0f0;
	color: #7A7A7A;
}
.results-card tr:last-child td { border-bottom: none; }
.results-card tbody tr:hover td { background: #fafafa; }

/* ---- Test runner & result card (white card on navy background) ---- */
.synapse-runner {
	background: #fff;
	border-radius: 0;
	padding: 0;
	overflow: hidden;
	margin: 0;
	min-height: 100vh;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.runner-header {
	background: #192F59;
	padding: 24px 40px;
}
.runner-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.runner-brand {
	font-size: 0.72em;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.45);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}
.runner-title {
	font-family: 'Rubik', Arial, sans-serif;
	font-size: 1.25em;
	font-weight: 600;
	color: #fff;
	margin-bottom: 3px;
}
.runner-instructions {
	font-size: 0.85em;
	color: rgba(255, 255, 255, 0.55);
}

.runner-body {
	padding: 28px 40px 36px;
	-webkit-user-select: none;
	user-select: none;
}

/* ---- Quiz runner ---- */
.quiz-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}
.nav-dot {
	width: 32px;
	height: 32px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #F7F7F7;
	cursor: pointer;
	font-size: 0.75em;
	padding: 0;
	color: #54595F;
}
.nav-dot.answered { background: #E9BE00; border-color: #E9BE00; color: #192F59; font-weight: 600; }
.nav-dot.current  { background: #192F59; color: #fff; border-color: #192F59; }

.quiz-progress { font-size: 0.85em; color: #54595F; margin-bottom: 12px; }

.question-text {
	font-size: 1.05em;
	line-height: 1.6;
	margin-bottom: 20px;
	white-space: pre-wrap;
	color: #333;
}

.options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.option {
	text-align: left;
	padding: 10px 14px;
	border: 2px solid #e0e0e0;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 0.95em;
	line-height: 1.4;
	color: #333;
	transition: border-color 0.12s, background 0.12s;
}
.option:hover    { border-color: #192F59; background: #f0f3f8; }
.option.selected { border-color: #192F59; background: #e8edf5; font-weight: 600; color: #192F59; }
.option-key { font-weight: 700; margin-right: 6px; color: #192F59; }

.quiz-footer { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* ---- Messages ---- */
.loading-msg { color: #54595F; font-style: italic; padding: 20px 0; }
.error-msg   { color: #EF3E36; padding: 20px 0; }
.warn-msg    { font-size: 0.85em; color: #EF3E36; margin-top: 8px; }

/* ---- Countdown timer ---- */
.synapse-timer {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 4px;
	background: #f0f3f8;
	border: 1px solid #192F59;
	font-size: 0.9em;
	font-weight: 600;
	margin-bottom: 14px;
	color: #192F59;
}
.synapse-timer.timer-warn   { background: #fff8e1; border-color: #E9BE00; color: #7a5c00; }
.synapse-timer.timer-danger { background: #f8d7da; border-color: #f5c6cb; color: #721c24; }

/* ---- Results ---- */
.results-wrap { max-width: 480px; margin: 40px auto; text-align: center; }
.results-wrap h2 { font-size: 1.5em; margin-bottom: 16px; }
.result-score { font-size: 3em; font-weight: bold; color: #192F59; margin-bottom: 4px; }
.result-pct   { font-size: 1.4em; color: #54595F; margin-bottom: 16px; }
.result-msg   { margin-bottom: 24px; color: #7A7A7A; }
.pending-note { font-size: 0.875em; color: #856404; background: #FFF3CD; padding: 10px 14px; border-radius: 6px; margin-bottom: 20px; }

/* ---- MCQ options — vertical stack ---- */
.answer-area--mcq { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

/* ---- Shared answer-area base ---- */
.answer-area { margin-top: 16px; margin-bottom: 24px; }

/* ---- Pending-review badge (LABEL, SAQ, LAQ, TABLE) ---- */
.pending-badge {
	display: inline-block;
	margin-top: 14px;
	padding: 4px 12px;
	border-radius: 20px;
	background: #FFF3CD;
	color: #856404;
	font-size: 0.8em;
	font-weight: 500;
}

/* ---- Image area (all question types) ---- */
.image-area { margin-bottom: 16px; text-align: center; }
.image-area img { max-width: 100%; max-height: 380px; object-fit: contain; border-radius: 6px; }
.image-pending {
	border: 2px dashed #ccc;
	color: #aaa;
	padding: 24px;
	text-align: center;
	border-radius: 6px;
	font-size: 0.9em;
}

/* ---- STATEMENT ---- */
.answer-area--statement { display: flex; flex-direction: column; gap: 10px; }

.stmt-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 12px 16px;
	gap: 16px;
	transition: background 0.15s;
}
.stmt-row--answered { background: #f0f4fa; }
.stmt-text { flex: 1; color: #192F59; font-size: 1em; line-height: 1.4; }
.tf-toggle { display: flex; gap: 6px; flex-shrink: 0; }
.tf-btn {
	width: 36px;
	height: 36px;
	border: 2px solid #ccc;
	border-radius: 50%;
	background: #fff;
	color: #7A7A7A;
	font-weight: 700;
	font-size: 0.9em;
	cursor: pointer;
	transition: all 0.15s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tf-btn.tf-active {
	border-color: #192F59;
	background: #192F59;
	color: #fff;
}
.tf-btn:hover:not(.tf-active) { border-color: #192F59; color: #192F59; }

/* ---- LABEL ---- */
.answer-area--label { display: flex; flex-direction: column; gap: 10px; }
.label-row { display: flex; align-items: center; gap: 12px; }
.label-key {
	width: 32px;
	height: 32px;
	background: #192F59;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9em;
	flex-shrink: 0;
}
.label-input {
	flex: 1;
	padding: 10px 12px;
	border: 1.5px solid #ddd;
	border-radius: 4px;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 1em;
	color: #192F59;
	transition: border-color 0.15s;
}
.label-input:focus { border-color: #192F59; outline: none; }

/* ---- SAQ ---- */
.answer-area--saq { display: flex; flex-direction: column; gap: 14px; }
.saq-row { display: flex; flex-direction: column; gap: 6px; }
.saq-prompt { color: #192F59; font-weight: 500; font-size: 0.95em; margin: 0; }
.saq-input {
	width: 100%;
	padding: 10px 12px;
	border: 1.5px solid #ddd;
	border-radius: 4px;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 1em;
	color: #192F59;
	box-sizing: border-box;
	transition: border-color 0.15s;
}
.saq-input:focus { border-color: #192F59; outline: none; }

/* ---- LAQ ---- */
.answer-area--laq {}
.laq-textarea {
	width: 100%;
	min-height: 180px;
	padding: 12px 14px;
	border: 1.5px solid #ddd;
	border-radius: 6px;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 1em;
	color: #192F59;
	resize: vertical;
	box-sizing: border-box;
	transition: border-color 0.15s;
	line-height: 1.5;
}
.laq-textarea:focus { border-color: #192F59; outline: none; }

/* ---- TABLE ---- */
.answer-area--table { overflow-x: auto; }
.tbl-question {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95em;
}
.tbl-question th {
	background: #192F59;
	color: #fff;
	padding: 10px 14px;
	text-align: left;
	font-weight: 600;
}
.tbl-question td {
	border: 1px solid #e0e0e0;
	padding: 8px 10px;
	vertical-align: middle;
}
.tbl-static { background: #F7F7F7; color: #192F59; }
.tbl-input {
	width: 100%;
	padding: 8px 10px;
	border: 1.5px solid #ddd;
	border-radius: 4px;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 0.95em;
	color: #192F59;
	box-sizing: border-box;
	transition: border-color 0.15s;
}
.tbl-input:focus { border-color: #192F59; outline: none; }

/* ---- Select question type ---- */
.select-hint { font-size: .85rem; color: #6b7280; margin: 0 0 10px; font-style: italic; }
.answer-area--select { display: flex; flex-direction: column; gap: 10px; }
.select-option {
	display: flex; align-items: center; justify-content: space-between;
	background: #fff; border: 1px solid #e0e0e0; border-radius: 6px;
	padding: 12px 16px; gap: 16px; cursor: pointer;
	font-family: 'Karla', Arial, sans-serif; font-size: 1em;
	color: #192F59; line-height: 1.4;
	transition: background 0.15s, border-color 0.15s;
	width: 100%; text-align: left;
}
.select-option:hover:not(.select-option--on) { border-color: #192F59; background: #f0f3f8; }
.select-option--on { background: #f0f4fa; border-color: #192F59; }
.select-text { flex: 1; }
.select-check {
	width: 36px; height: 36px;
	border: 2px solid #ccc; border-radius: 50%;
	flex-shrink: 0;
	transition: background 0.15s, border-color 0.15s;
}
.select-option--on .select-check { background: #192F59; border-color: #192F59; }

/* ---- MATCH ---- */
.answer-area--match { display: flex; flex-direction: column; gap: 10px; }
.match-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	gap: 16px;
	padding: 10px 14px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
}
.match-def { font-size: 0.93em; line-height: 1.5; color: #1e293b; padding-top: 4px; }
.match-select, .rt-match-select {
	min-width: 180px; max-width: 240px;
	padding: 6px 10px;
	border: 1.5px solid #d1d5db; border-radius: 6px;
	background: #fff; font-size: 0.9em; color: #1e293b;
	cursor: pointer; flex-shrink: 0; font-family: inherit;
}
.match-select:focus, .rt-match-select:focus { border-color: #192F59; outline: none; }
.match-row--fb {
	display: flex; flex-direction: column; gap: 5px;
	padding: 10px 14px 10px 16px;
	border-radius: 8px; border: 1px solid #e2e8f0;
	border-left-width: 4px;
}
.match-row--correct { background: #f0fdf4; border-color: #bbf7d0; border-left-color: #16a34a; }
.match-row--wrong   { background: #fef2f2; border-color: #fecaca; border-left-color: #dc2626; }
.match-fb-def     { font-size: 0.93em; font-weight: 500; color: #374151; }
.match-fb-student { font-size: 0.9em; color: #1e293b; }
.match-fb-correct { font-size: 0.9em; color: #15803d; font-weight: 600; }

/* ---- ERRORFIX ---- */
.answer-area--errorfix { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.errorfix-option {
	display: flex; align-items: baseline; gap: 8px;
	width: 100%; padding: 10px 14px;
	background: #fff; border: 1.5px solid #d1d5db; border-radius: 8px;
	text-align: left; cursor: pointer; font-size: 0.93em;
	color: #1e293b; font-family: inherit;
	transition: border-color .15s, background .15s;
}
.errorfix-option:hover:not([disabled]) { border-color: #192F59; background: #f8fafc; }
.errorfix-option--on { border-color: #192F59 !important; background: #eff6ff !important; }
.errorfix-num { flex-shrink: 0; min-width: 22px; color: #6b7280; font-size: 0.88em; }
.errorfix-incorrect { text-decoration: line-through; color: #9ca3af; font-style: normal; }
.errorfix-correct { font-weight: 600; color: #192F59; }
.errorfix-arrow { color: #9ca3af; flex-shrink: 0; margin: 0 2px; }
.errorfix-option--on .errorfix-incorrect { color: #7c8db5; }
.errorfix-option--on .errorfix-correct { color: #192F59; }
.errorfix-option.rt-correct .errorfix-incorrect,
.errorfix-option.rt-correct .errorfix-correct,
.errorfix-option.rt-correct .errorfix-arrow,
.errorfix-option.rt-wrong .errorfix-incorrect,
.errorfix-option.rt-wrong .errorfix-correct,
.errorfix-option.rt-wrong .errorfix-arrow { color: inherit; }
.errorfix-option.rt-missed { background: #fefce8 !important; border-color: #ca8a04 !important; color: #92400e !important; }
.errorfix-option.rt-missed .errorfix-incorrect,
.errorfix-option.rt-missed .errorfix-correct,
.errorfix-option.rt-missed .errorfix-arrow { color: #92400e; }

/* ---- GAP FILL ---- */
.answer-area--gapfill { margin-top: 8px; }
.gapfill-passage {
	font-size: 1.05em;
	line-height: 2.2;
	color: #333;
	margin: 0;
}
.gapfill-input {
	display: inline-block;
	width: 140px;
	padding: 4px 8px;
	border: 1.5px solid #192F59;
	border-radius: 4px;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 0.95em;
	color: #192F59;
	background: #f0f3f8;
	margin: 0 4px;
	vertical-align: middle;
	transition: border-color 0.15s, background 0.15s;
}
.gapfill-input:focus { border-color: #E9BE00; background: #fff; outline: none; }
.gapfill-input.rt-correct { background: #16a34a !important; border-color: #16a34a !important; color: #fff !important; }
.gapfill-input.rt-wrong   { background: #dc2626 !important; border-color: #dc2626 !important; color: #fff !important; }
.rt-option-disabled { pointer-events: none; }
.rt-missed-hint { font-size: 0.82em; color: #16a34a; margin-left: 2px; vertical-align: middle; }

/* ---- Help modal ---- */
.help-modal {
	position: fixed; inset: 0; z-index: 9999;
	background: transparent;
	display: flex; align-items: center; justify-content: center;
	padding: 16px;
}
.help-modal[hidden] { display: none; }
.help-modal-inner {
	background: #fff; border-radius: 12px;
	width: 100%; max-width: 700px; max-height: 88vh;
	display: flex; flex-direction: column;
	box-shadow: 0 4px 24px rgba(0,0,0,.10);
}
.help-modal-header {
	display: flex; align-items: center; justify-content: space-between;
	padding: 20px 24px 16px;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
}
.help-modal-header h2 {
	margin: 0; font-size: 1.15rem;
	font-family: 'Karla', Arial, sans-serif; font-weight: 600; color: #192F59;
}
.help-modal-close {
	background: none; border: none; font-size: 1.5rem; line-height: 1;
	cursor: pointer; color: #9ca3af; padding: 4px 8px;
	border-radius: 6px; outline: none;
}
.help-modal-close:hover { color: #192F59; background: #f3f4f6; }
.help-modal-body {
	overflow-y: auto; padding: 20px 24px 28px;
	font-family: 'Karla', Arial, sans-serif;
}
.help-modal-body section { margin-bottom: 24px; }
.help-modal-body section:last-child { margin-bottom: 0; }
.help-modal-body h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 600; color: #192F59; font-family: 'Karla', Arial, sans-serif; }
.help-modal-body p,
.help-modal-body li { font-size: .92rem; color: #374151; line-height: 1.6; margin: 0 0 6px; }
.help-modal-body ul { padding-left: 20px; margin: 6px 0 0; }

/* ==========================================================================
   Run Through — Feedback states
   ========================================================================== */

/* Correct answer: green */
.rt-correct {
	background: #16a34a !important;
	border-color: #16a34a !important;
	color: #fff !important;
}
/* Wrong answer: red */
.rt-wrong {
	background: #dc2626 !important;
	border-color: #dc2626 !important;
	color: #fff !important;
}
/* Missed (should have been selected but wasn't): green outline */
.rt-missed {
	background: #f0fdf4 !important;
	border-color: #16a34a !important;
	color: #15803d !important;
}
/* T/F button when correct but student was wrong: still show green on the correct btn */
.rt-option-disabled {
	cursor: default !important;
	pointer-events: none;
	opacity: 1 !important;
}
.rt-missed-hint {
	font-size: .8em;
	font-style: italic;
	margin-left: 4px;
	color: #15803d;
}

/* ==========================================================================
   Run Through — Progress bar (inside test runner)
   ========================================================================== */

.rt-progress-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}
.rt-progress-text {
	font-size: .85rem;
	color: #6b7280;
	white-space: nowrap;
	flex-shrink: 0;
}
.rt-progress-track {
	flex: 1;
	height: 6px;
	background: #e5e7eb;
	border-radius: 99px;
	overflow: hidden;
}
.rt-progress-fill {
	height: 100%;
	background: #192F59;
	border-radius: 99px;
	transition: width 0.3s ease;
}

/* ==========================================================================
   Run Through — Feedback banner
   ========================================================================== */

.rt-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 18px;
}
.rt-banner--correct {
	background: #dcfce7;
	color: #15803d;
	border: 1.5px solid #16a34a;
}
.rt-banner--incorrect {
	background: #fee2e2;
	color: #b91c1c;
	border: 1.5px solid #dc2626;
}

/* ==========================================================================
   Run Through — Navigation bar
   ========================================================================== */

.rt-nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
	gap: 12px;
}
.rt-nav-bar .btn-ghost {
	border-color: #192F59;
	color: #192F59;
}
.rt-nav-bar .btn-ghost:hover { background: #f0f3f8; color: #192F59; }

/* ==========================================================================
   Run Through — Explanation box
   ========================================================================== */

.rt-explanation {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: 16px;
	font-size: .93rem;
	color: #374151;
	line-height: 1.6;
}

/* ==========================================================================
   Run Through — Completion screen
   ========================================================================== */

.rt-complete {
	text-align: center;
	padding: 40px 20px;
	max-width: 480px;
	margin: 0 auto;
}
.rt-complete-icon {
	font-size: 3rem;
	line-height: 1;
	color: #16a34a;
	margin-bottom: 12px;
}
.rt-complete h2 {
	font-size: 1.6rem;
	color: #192F59;
	margin: 0 0 16px;
}
.rt-practice-note {
	font-size: .85rem;
	color: #6b7280;
	margin: 16px 0 24px;
	line-height: 1.5;
}
.rt-complete-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ==========================================================================
   Run Through — Dashboard buttons and progress
   ========================================================================== */

.btn-rt {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border: 1.5px solid #c9a000;
	border-radius: 6px;
	background: #E9BE00;
	color: #192F59;
	font-family: 'Karla', Arial, sans-serif;
	font-size: .9em;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
	white-space: nowrap;
}
.btn-rt:hover { background: #d4aa00; }
.btn-rt.btn-rt-done {
	border-color: #c9a000;
	background: #E9BE00;
	color: #192F59;
}
.btn-rt-reset-link {
	background: none;
	border: none;
	color: #9ca3af;
	font-size: .8em;
	font-family: 'Karla', Arial, sans-serif;
	cursor: pointer;
	text-decoration: underline;
	padding: 2px 0;
	white-space: nowrap;
}
.btn-rt-reset-link:hover { color: #dc2626; }

/* Dashboard run-through progress bar */
.rt-dashboard-progress {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}
.rt-dashboard-progress-bar {
	flex: 1;
	max-width: 180px;
	height: 5px;
	background: #e5e7eb;
	border-radius: 99px;
	overflow: hidden;
}
.rt-dashboard-progress-fill {
	height: 100%;
	background: #E9BE00;
	border-radius: 99px;
	transition: width 0.3s;
}
.rt-dashboard-progress-label {
	font-size: .8rem;
	color: #6b7280;
	white-space: nowrap;
}

/* ---- Mobile Optimisation (max-width: 640px) ---- */
@media (max-width: 640px) {

	/* 2a. Global padding reduction */
	.synapse-wrap { padding: 0 16px 24px; }
	.runner-header { padding: 14px 16px; }
	.runner-body   { padding: 16px 16px 28px; }
	.dash-body     { padding: 16px 16px 28px; }

	/* 2b. Headers — stack on mobile */
	.dash-header-inner {
		flex-wrap: wrap;
		gap: 10px;
	}
	.runner-header-inner {
		flex-wrap: wrap;
		gap: 8px;
	}
	.runner-header-inner > a.btn-ghost {
		align-self: flex-start;
	}
	.runner-title { font-size: 1em; }
	.runner-brand { font-size: 0.7em; }
	.dash-brand   { font-size: 0.7em; }

	/* 2c. Statement rows — stack text above T/F buttons */
	.stmt-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.stmt-text { font-size: 0.95em; }

	/* 2d. Results tables — scrollable on mobile */
	.results-card { overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.results-card table { min-width: 480px; }

	/* 2e. Gap fill — narrower inputs on mobile */
	.gapfill-input { width: 100px; }

	/* 2f. Help modal — full width */
	.help-modal-inner {
		width: 96vw;
		max-width: 96vw;
		max-height: 85vh;
		padding: 20px 16px;
	}

	/* 2f. Nav dots — smaller on mobile */
	.nav-dot {
		width: 28px;
		height: 28px;
		font-size: 0.75em;
	}

	/* 2g. Timer — full width banner on mobile */
	.synapse-timer {
		display: block;
		width: 100%;
		text-align: center;
		box-sizing: border-box;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}

	/* 2h. Dashboard test items — stack actions below info */
	.test-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.test-actions {
		width: 100%;
		flex-wrap: wrap;
	}

	/* 2i. Run-through progress bar — full width */
	.rt-dashboard-progress-bar { max-width: none; flex: 1; }

	/* 2j. Auth pages — reduce padding */
	.synapse-auth-body { padding: 32px 20px !important; }

}

/* ============================================================
   v5.0.0 — Result page enhancements
   ============================================================ */

/* Pending marking banner */
.synapse-pending-banner {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-left: 4px solid #f9a825;
	border-radius: 4px;
	padding: 14px 18px;
	margin-bottom: 20px;
	font-size: 0.95em;
	color: #5d4037;
	line-height: 1.5;
}
.synapse-pending-banner__icon { font-size: 1.3em; flex-shrink: 0; margin-top: 1px; }

/* TABLE grid display (student-result.php + marking.php) */
.synapse-tbl-preview {
	overflow-x: auto;
}
.synapse-tbl-preview table {
	border-collapse: collapse;
	font-size: 0.88em;
	min-width: 100%;
}
.synapse-tbl-preview th {
	background: #f0f0f0;
	border: 1px solid #ccc;
	padding: 4px 10px;
	font-weight: 600;
	color: #192F59;
	white-space: nowrap;
}
.synapse-tbl-preview td {
	border: 1px solid #ccc;
	padding: 4px 10px;
}
.synapse-tbl-blank {
	background: #fff3cd !important;
	font-weight: 500;
	color: #5d4037;
}
.synapse-tbl-static {
	color: #888;
}

/* Review column badges (LABEL/SAQ/LAQ/TABLE) */
.synapse-review-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 3px;
	font-size: 0.88em;
	font-weight: 600;
	line-height: 1.4;
}
.synapse-review-badge--correct   { background: #d4edda; color: #155724; }
.synapse-review-badge--incorrect { background: #f8d7da; color: #721c24; }
.synapse-review-badge--partial   { background: #fff3cd; color: #856404; }
.synapse-review-badge--pending   { background: #e2e3e5; color: #383d41; }

/* MATCH / ERRORFIX per-row/option correctness indicators */
.synapse-match-row-result {
	display: inline-block;
	font-weight: 700;
	font-size: 1em;
	margin-left: 6px;
}
.synapse-match-row-result--correct   { color: #155724; }
.synapse-match-row-result--incorrect { color: #721c24; }

/* ── Feedback Form ────────────────────────────────────────── */
.synapse-feedback-page .field label {
	display: block;
	font-weight: 500;
	margin-bottom: 5px;
	color: #192F59;
	font-size: 0.92em;
}
.synapse-feedback-page .field input,
.synapse-feedback-page .field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d0d5dd;
	border-radius: 4px;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 0.95em;
	box-sizing: border-box;
	color: #333;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.synapse-feedback-page .field input:focus,
.synapse-feedback-page .field textarea:focus {
	outline: none;
	border-color: #E9BE00;
	box-shadow: 0 0 0 2px rgba(233,190,0,0.25);
}
.synapse-feedback-page .field textarea { resize: vertical; }
.synapse-feedback-page .synapse-site-footer { background: rgba(25,47,89,0.97); }
@media (max-width: 480px) {
	.synapse-feedback-page > div { padding: 24px 20px; }
}

/* ── Site Footer ──────────────────────────────────────────── */
.synapse-site-footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px 10px;
	padding: 20px 20px 28px;
	font-family: 'Karla', Arial, sans-serif;
	font-size: 0.8em;
	color: #999;
	text-align: center;
}
.synapse-site-footer a {
	color: #888;
	text-decoration: none;
}
.synapse-site-footer a:hover {
	color: #192F59;
	text-decoration: underline;
}
.synapse-site-footer .footer-sep {
	color: #ccc;
}

/* Footer on dark (auth + feedback) pages */
.synapse-auth-page .synapse-site-footer,
.synapse-feedback-page .synapse-site-footer {
	color: rgba(255,255,255,0.35);
	padding-top: 28px;
}
.synapse-auth-page .synapse-site-footer a,
.synapse-feedback-page .synapse-site-footer a {
	color: rgba(255,255,255,0.45);
}
.synapse-auth-page .synapse-site-footer a:hover,
.synapse-feedback-page .synapse-site-footer a:hover {
	color: #E9BE00;
	text-decoration: none;
}
.synapse-auth-page .synapse-site-footer .footer-sep,
.synapse-feedback-page .synapse-site-footer .footer-sep {
	color: rgba(255,255,255,0.2);
}

/* ── Legal Pages ──────────────────────────────────────────── */
.synapse-legal-page {
	max-width: 780px;
	margin: 40px auto;
	padding: 0 20px;
	font-family: 'Karla', Arial, sans-serif;
}
.legal-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-top: 4px solid #192F59;
	border-radius: 6px;
	padding: 40px 48px;
}
.legal-header {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid #f0f0f0;
}
.legal-eyebrow {
	display: block;
	font-size: 0.72em;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: rgba(25,47,89,0.55);
	margin-bottom: 8px;
}
.legal-header h1 {
	font-family: 'Rubik', sans-serif;
	color: #192F59;
	font-size: 1.9em;
	margin: 0 0 8px;
	line-height: 1.2;
}
.legal-meta {
	font-size: 0.82em;
	color: #999;
	margin: 0;
}
.legal-body {
	color: #444;
	font-size: 0.95em;
	line-height: 1.7;
}
.legal-body h2 {
	font-family: 'Rubik', sans-serif;
	color: #192F59;
	font-size: 1.1em;
	margin: 32px 0 10px;
	padding-top: 8px;
	border-top: 1px solid #f0f0f0;
}
.legal-body h3 {
	font-family: 'Karla', Arial, sans-serif;
	color: #192F59;
	font-size: 0.95em;
	font-weight: 700;
	margin: 20px 0 6px;
}
.legal-body p { margin: 0 0 12px; }
.legal-body ul {
	margin: 0 0 12px 0;
	padding-left: 22px;
}
.legal-body ul li { margin-bottom: 6px; }
.legal-body address {
	font-style: normal;
	background: #f7f8fa;
	border-left: 3px solid #192F59;
	padding: 12px 16px;
	border-radius: 0 4px 4px 0;
	margin: 8px 0 16px;
	line-height: 1.8;
}
.legal-body a { color: #192F59; }
.legal-body a:hover { color: #E9BE00; }

/* Legal page logo */
.legal-logo-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.legal-logo-img {
	width: 44px;
	height: auto;
	display: block;
}
.legal-brand-text {
	font-size: 0.78em;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(25,47,89,0.55);
}
.legal-logo-wrap a { line-height: 0; }

@media (max-width: 600px) {
	.legal-card { padding: 28px 22px; }
	.legal-header h1 { font-size: 1.5em; }
}

/* ==========================================================================
   Demo Page  [synapse_demo]
   ========================================================================== */

/* Reliable hide — theme CSS may override [hidden] on buttons */
.snp-hidden { display: none !important; }

.synapse-demo-page { font-family: 'Karla', Arial, sans-serif; }
.snp-demo-screen[hidden] { display: none !important; }

/* ── Hero ── */
.demo-hero { background: #192F59; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 60px 24px; box-sizing: border-box; }
.demo-hero-inner    { max-width: 520px; width: 100%; text-align: center; }
.demo-hero-logo     { width: 72px; height: auto; margin: 0 auto 20px; display: block; }
.demo-hero-brand    { font-size: 0.75em; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin: 0 0 14px; }
.demo-hero-title    { font-family: 'Rubik', Arial, sans-serif; font-size: 2.1em; font-weight: 600; color: #fff; margin: 0 0 10px; line-height: 1.2; }
.demo-hero-subtitle { font-size: 1.05em; color: rgba(255,255,255,0.7); margin: 0 0 14px; line-height: 1.5; }
.demo-hero-intro    { color: rgba(255,255,255,0.6); font-size: 0.92em; line-height: 1.65; margin: 0 0 28px; }
.demo-hero-divider  { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 22px 0; }

/* ── Email form (hero + results panel) ── */
.demo-email-form { text-align: left; }
.demo-email-form .field { margin-bottom: 14px; }
.demo-email-form label { display: block; font-size: 0.85em; font-weight: 500; color: rgba(255,255,255,0.8); margin-bottom: 5px; }
.demo-email-form input[type="text"],
.demo-email-form input[type="email"] { width: 100%; padding: 11px 13px; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; background: #fff; color: #333; font-family: 'Karla', Arial, sans-serif; font-size: 0.95em; box-sizing: border-box; }
.demo-email-form input:focus { outline: none; border-color: #E9BE00; box-shadow: 0 0 0 2px rgba(233,190,0,0.3); }
.demo-form-error { background: rgba(255,255,255,0.10); color: #fca5a5; border: 1px solid rgba(252,165,165,0.45); border-radius: 4px; padding: 9px 12px; font-size: 0.875em; margin-bottom: 12px; }

/* ── Features section ── */
.demo-features         { background: #fff; padding: 64px 32px; }
.demo-features-inner   { max-width: 1000px; margin: 0 auto; }
.demo-features-heading { font-family: 'Rubik', Arial, sans-serif; font-size: 1.65em; font-weight: 600; color: #192F59; text-align: center; margin: 0 0 40px; }
.demo-features-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.demo-feature-card     { background: #f7f9fc; border: 1px solid #e8e8e8; border-radius: 8px; padding: 28px 24px; text-align: center; }
.demo-feature-icon     { font-size: 2em; margin-bottom: 12px; }
.demo-feature-card h3  { font-family: 'Rubik', Arial, sans-serif; font-size: 1em; font-weight: 600; color: #192F59; margin: 0 0 8px; }
.demo-feature-card p   { font-size: 0.875em; color: #54595F; line-height: 1.55; margin: 0; }
.demo-features-cta     { text-align: center; }
.demo-features-cta-hint { color: #54595F; font-size: 0.9em; margin: 0; }

/* ── Quiz: progress badge in runner-header ── */
.demo-progress-badge { font-size: 0.85em; color: rgba(255,255,255,0.7); font-family: 'Karla', Arial, sans-serif; }

/* ── Results section ── */
.demo-results-hero  { background: #192F59; padding: 52px 32px 44px; text-align: center; }
.demo-results-score { font-family: 'Rubik', Arial, sans-serif; font-size: 3.5em; font-weight: 600; color: #E9BE00; line-height: 1; margin-bottom: 8px; }
.demo-results-pct   { font-size: 1.35em; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.demo-results-msg   { color: rgba(255,255,255,0.58); font-size: 0.95em; max-width: 440px; margin: 0 auto; line-height: 1.5; }
.demo-results-body  { max-width: 720px; margin: 0 auto; padding: 28px 32px 48px; }

/* ── Breakdown cards ── */
.demo-breakdown { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.demo-q-card { border: 1px solid #e8e8e8; border-left: 4px solid #e8e8e8; border-radius: 6px; padding: 14px 16px; background: #fff; }
.demo-q-card.demo-q-correct   { border-left-color: #16a34a; background: #f0fdf4; }
.demo-q-card.demo-q-incorrect { border-left-color: #dc2626; background: #fef2f2; }
.demo-q-card.demo-q-manual    { border-left-color: #E9BE00; background: #fffbeb; }
.demo-q-num    { font-size: 0.75em; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #54595F; margin-bottom: 4px; }
.demo-q-text   { font-size: 0.95em; color: #192F59; margin-bottom: 8px; line-height: 1.4; }
.demo-q-badge  { display: inline-block; padding: 2px 10px; border-radius: 12px; font-size: 0.78em; font-weight: 600; }
.demo-q-badge-correct   { background: #dcfce7; color: #15803d; }
.demo-q-badge-incorrect { background: #fee2e2; color: #b91c1c; }
.demo-q-badge-manual    { background: #fef9c3; color: #854d0e; }
.demo-q-answer { font-size: 0.88em; color: #15803d; margin: 6px 0 0; font-weight: 500; }

/* ── Results CTA panel ── */
.demo-cta-panel   { background: #192F59; border-radius: 8px; padding: 28px 32px; }
.demo-cta-heading { font-family: 'Rubik', Arial, sans-serif; font-size: 1.35em; font-weight: 600; color: #fff; margin: 0 0 6px; }
.demo-cta-sub     { color: rgba(255,255,255,0.65); font-size: 0.9em; margin: 0 0 20px; }

/* ── Thank you screen ── */
.demo-thankyou-section { background: #f7f9fc; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.demo-thankyou-inner   { text-align: center; padding: 60px 32px; max-width: 480px; }
.demo-thankyou-inner h2 { font-family: 'Rubik', Arial, sans-serif; font-size: 1.8em; font-weight: 600; color: #192F59; margin-bottom: 10px; }
.demo-thankyou-inner p  { color: #54595F; margin: 0 0 22px; line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 768px) {
	.demo-features-grid { grid-template-columns: 1fr; gap: 16px; }
	.demo-features { padding: 48px 20px; }
}
@media (max-width: 600px) {
	.demo-hero { padding: 44px 20px; min-height: auto; }
	.demo-hero-title { font-size: 1.55em; }
	.demo-results-body { padding: 20px 16px 32px; }
	.demo-results-hero { padding: 36px 20px 32px; }
	.demo-results-score { font-size: 2.5em; }
	.demo-cta-panel { padding: 22px 20px; }
	.demo-thankyou-inner { padding: 44px 20px; }
}

/* ==========================================================================
   Explanation toggle — student result page
   ========================================================================== */

.snp-exp-toggle {
	margin-top: 6px;
}
.snp-exp-toggle > summary {
	font-size: 0.82em;
	color: #192F59;
	cursor: pointer;
	font-weight: 600;
	display: inline-block;
	padding: 2px 0;
	list-style: none;
}
.snp-exp-toggle > summary::-webkit-details-marker { display: none; }
.snp-exp-toggle > summary::before {
	content: '▶ ';
	font-size: 0.75em;
}
.snp-exp-toggle[open] > summary::before {
	content: '▼ ';
}
.snp-exp-body {
	margin-top: 5px;
	background: #eef2ff;
	border-left: 3px solid #192F59;
	padding: 6px 10px;
	font-size: 0.85em;
	color: #333;
	border-radius: 0 4px 4px 0;
	line-height: 1.5;
}
