/* ==========================================================================
   MAU Admission — modern wizard UI
   ========================================================================== */
.mau-wizard {
	--mau-primary: #0a5c36;
	--mau-primary-dark: #08472a;
	--mau-primary-light: #e6f2ec;
	--mau-text: #1c2a25;
	--mau-muted: #6b7a75;
	--mau-border: #e2e8e5;
	--mau-danger: #c0392b;
	--mau-bg: #f6f8f7;
	--mau-radius: 14px;

	max-width: 780px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--mau-text);
}

.mau-wizard-header { text-align: center; margin-bottom: 28px; }
.mau-wizard-title { font-size: 26px; font-weight: 700; margin: 0 0 4px 0; }
.mau-wizard-subtitle { color: var(--mau-muted); margin: 0 0 24px 0; font-size: 14px; }

/* Step indicator */
.mau-steps { display: flex; align-items: center; justify-content: center; }
.mau-step { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 90px; }
.mau-step-circle {
	width: 34px; height: 34px; border-radius: 50%;
	background: #fff; border: 2px solid var(--mau-border);
	color: var(--mau-muted);
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 14px;
	transition: all .25s ease;
}
.mau-step-label { font-size: 12px; color: var(--mau-muted); font-weight: 600; }
.mau-step.active .mau-step-circle,
.mau-step.done .mau-step-circle {
	border-color: var(--mau-primary);
	background: var(--mau-primary);
	color: #fff;
}
.mau-step.active .mau-step-label,
.mau-step.done .mau-step-label { color: var(--mau-primary); }
.mau-step-line { flex: 1; height: 2px; background: var(--mau-border); margin: 0 6px 20px 6px; max-width: 60px; }

/* Panels / cards */
.mau-panel { display: none; animation: mauFadeIn .35s ease; }
.mau-panel.is-active { display: block; }
@keyframes mauFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.mau-card {
	background: #fff;
	border: 1px solid var(--mau-border);
	border-radius: var(--mau-radius);
	padding: 28px 26px;
	box-shadow: 0 4px 20px rgba(10, 92, 54, 0.06);
	margin-bottom: 18px;
}
.mau-card-title { font-size: 17px; font-weight: 700; margin: 0 0 18px 0; }

/* Grid layout */
.mau-grid { display: grid; gap: 18px 16px; }
.mau-grid-2 { grid-template-columns: 1fr 1fr; }
.mau-grid-span-2 { grid-column: span 2; }
@media (max-width: 620px) {
	.mau-grid-2 { grid-template-columns: 1fr; }
	.mau-grid-span-2 { grid-column: span 1; }
}

/* Floating-label fields */
.mau-field { position: relative; }
.mau-field input,
.mau-field select {
	width: 100%;
	padding: 14px 12px 8px 12px;
	border: 1.5px solid var(--mau-border);
	border-radius: 10px;
	font-size: 14px;
	background: #fff;
	transition: border-color .2s ease;
	color: var(--mau-text);
}
.mau-field input:focus,
.mau-field select:focus {
	outline: none;
	border-color: var(--mau-primary);
}
.mau-field label {
	position: absolute;
	left: 12px;
	top: 14px;
	font-size: 14px;
	color: var(--mau-muted);
	pointer-events: none;
	transition: all .15s ease;
	background: #fff;
	padding: 0 4px;
}
.mau-field input:focus + label,
.mau-field input:not(:placeholder-shown) + label,
.mau-field select:focus + label,
.mau-field select.mau-filled + label {
	top: -8px;
	left: 8px;
	font-size: 11px;
	font-weight: 700;
	color: var(--mau-primary);
}
.mau-field-select select { appearance: none; }

/* File uploads */
.mau-upload { display: flex; flex-direction: column; gap: 6px; }
.mau-upload label { font-size: 13px; font-weight: 600; }
.mau-upload input[type="file"] {
	border: 1.5px dashed var(--mau-border);
	border-radius: 10px;
	padding: 10px;
	font-size: 13px;
	background: var(--mau-bg);
}
.mau-upload-name { font-size: 12px; color: var(--mau-muted); }

/* Buttons */
.mau-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 22px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
}
.mau-btn:active { transform: scale(0.97); }
.mau-btn-primary { background: var(--mau-primary); color: #fff; box-shadow: 0 6px 16px rgba(10,92,54,0.25); }
.mau-btn-primary:hover { background: var(--mau-primary-dark); }
.mau-btn-outline { background: #fff; color: var(--mau-primary); border: 1.5px solid var(--mau-primary); margin-top: 4px; }
.mau-btn-outline:hover { background: var(--mau-primary-light); }
.mau-btn-ghost { background: transparent; color: var(--mau-muted); border: 1.5px solid var(--mau-border); }
.mau-btn-ghost:hover { background: var(--mau-bg); }
.mau-btn:disabled { opacity: .6; cursor: not-allowed; }
.mau-arrow { transition: transform .15s ease; }
.mau-btn:hover .mau-arrow { transform: translateX(3px); }

.mau-wizard-actions { display: flex; justify-content: space-between; align-items: center; }

/* Messages */
.mau-adm-hint { font-size: 12px; color: var(--mau-muted); margin: -6px 0 14px 0; }
.mau-eligibility-result { margin-top: 14px; font-size: 13.5px; }
.mau-error { color: var(--mau-danger); font-weight: 600; }
.mau-success { color: var(--mau-primary); font-weight: 600; }
.mau-adm-message { margin-top: 18px; }
.mau-adm-message .mau-success-card {
	background: var(--mau-primary-light);
	border: 1px solid var(--mau-primary);
	border-radius: var(--mau-radius);
	padding: 20px;
	text-align: center;
}

.mau-review-summary {
	margin-top: 18px;
	padding: 14px 16px;
	background: var(--mau-bg);
	border-radius: 10px;
	font-size: 13px;
	color: var(--mau-text);
	line-height: 1.7;
}
.mau-review-summary strong { color: var(--mau-primary); }

/* ==========================================================================
   Student "Track Application" dashboard card
   ========================================================================== */
.mau-track-wrap {
	max-width: 560px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.mau-track-card {
	background: #fff;
	border: 1px solid #e2e8e5;
	border-radius: 14px;
	padding: 26px;
	box-shadow: 0 4px 20px rgba(10, 92, 54, 0.06);
}
.mau-track-card h3 { margin-top: 0; }
.mau-track-search { display: flex; gap: 8px; margin-bottom: 8px; }
.mau-track-search input {
	flex: 1;
	padding: 12px;
	border: 1.5px solid #e2e8e5;
	border-radius: 10px;
	font-size: 14px;
}
.mau-status-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}
.mau-status-pending { background: #fff4e5; color: #b26a00; }
.mau-status-paid { background: #e6f2ec; color: #0a5c36; }
.mau-track-result { margin-top: 18px; }
.mau-track-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #e2e8e5; font-size: 13.5px; }
.mau-track-row:last-child { border-bottom: none; }
