/* Fade In Animation */
.animate-fadeIn {
	animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Range Slider Motion & Gradient */
.range-slider-track > .range-slider-fill {
	transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
	background: linear-gradient(90deg, #FF4800 0%, #FF9E05 100%);
}
.range-slider-handle {
	transition: left 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 200ms ease;
}

/* Category Nav (Completed/Current/Upcoming) */
.cat-upcoming { background: #f3f4f6; color: #6b7280; }
.cat-current { background: #FF4800; color: white; box-shadow: 0 8px 20px rgba(255,72,0,0.25); }
.cat-completed { background: #0B1220; color: white; box-shadow: 0 8px 20px rgba(11,18,32,0.18); }


#header-info h1 {margin-top:7px;}
#header-info p {font-size:15.5px; margin-top:10px;}

#wizard-content h3 {font-size:20px;}
#wizard-content .page-break-inside-avoid h3 {font-size:24px;}