* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	overflow-wrap: break-word !important;
}

html {
	height: 100%;
}

body {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2em;
	text-align: center;
	color: white;
	min-height: 100%;
}

.container {
	background: #0000ff;
	padding: 4em;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}

.inner-container {
	background-color: #fff;
	max-width: 1000px;
	margin: 20px auto;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	font-family: Arial, sans-serif;
	color: #333;
	line-height: 1.6;
}

.inner-container.scroll {
	overflow-y: auto;
	max-height: 900px !important;
	text-align: left;
	color: black;
}

.inner-container.scroll ul {
	list-style: disc inside;
	padding-left: 0;
}

.inner-container.scroll li {
	/* Added/modified rule for aggressive word breaking */
	word-break: break-all;
}

h1 {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.grey-message {
	font-size: 1.2rem;
	color: #d3d3d3;
	margin-top: 2em;
}

.yellow-message {
	font-size: 1.8em;
	color: rgb(247, 247, 27);
}

.blue-message {
	font-size: 1.8em;
	color: #007bff;
}

.inner-container-body {
	font-size: 1em;
	line-height: 1.6;
	color: #555;
	margin-bottom: 15px;
}

.bold-message {
	margin-top: 0;
	font-size: 1.2em;
	line-height: 1.6;
	color: #333;
	font-weight: bold;
}

.highlight-blue {
	color: #007bff;
}

.highlight-white-box {
	background-color: white;
	padding: 1em;
	border-radius: 5px;
	color: #007bff;
}

strong {
	font-weight: bold;
}

.inner-container h1,
.inner-container h2,
.inner-container h3,
.inner-container h4,
.inner-container h5,
.inner-container h6 {
	color: #2c3e50;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	line-height: 1.2;
}

.inner-container h1 {
	font-size: 2.5em;
	border-bottom: 2px solid #3498db;
	padding-bottom: 0.3em;
}

.inner-container h2 {
	font-size: 2em;
	border-bottom: 1px solid #3498db;
	padding-bottom: 0.2em;
}

.inner-container h3 {
	font-size: 1.75em;
}

.inner-container p {
	margin: 1em 0;
}

.inner-container a {
	color: #3498db;
	text-decoration: none;
	border-bottom: 1px dotted #3498db;
	transition: color 0.2s, border-color 0.2s;
}

.inner-container a:hover {
	color: #2980b9;
	border-color: #2980b9;
}

.inner-container blockquote {
	border-left: 4px solid #3498db;
	padding-left: 1em;
	color: #7f8c8d;
	margin: 1em 0;
	font-style: italic;
}

.inner-container code {
	background-color: #ecf0f1;
	padding: 2px 4px;
	border-radius: 4px;
	font-family: monospace;
	font-size: 0.95em;
	white-space: pre-wrap;
}

.inner-container pre {
	white-space: pre-wrap;
}

.inner-container pre code {
	display: block;
	padding: 1em;
	border-radius: 8px;
	overflow-x: hidden;
}

.inner-container em {
	font-style: italic;
	font-weight: 300;
}

ul {
	list-style: disc inside;
	padding-left: 0;
}

li {
	margin-bottom: 10px;
}

.inner-container ul,
.inner-container ol {
	margin: 1em 0;
}

.markdown.inner-container ul,
.markdown.inner-container ol {
	padding-left: 0;
	list-style-position: inside;
}

.inner-container li {
	margin: 0.5em 0;
}

form {
	margin-top: 30px;
	text-align: left;
}

form strong {
	display: block;
	margin-top: 15px;
	background-color: white;
	color: #007bff;
	text-align: center;
	padding: 25px;
	border-radius: 5px;
}

.url-container {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 10px;
	border-radius: 5px;
	margin: 15px 0;
}

input,
select,
textarea {
	font-size: 1rem;
	padding: 10px;
	width: 100%;
	border: 2px solid #ccc;
	border-radius: 6px;
	outline: none;
	margin-top: 5px;
	transition: all 0.3s ease-in-out;
	font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #fff;
	box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

textarea {
	height: 80px;
	resize: vertical;
}

option:disabled,
select.disabled-option {
	color: #999;
}

.slider {
	width: 100%;
}

.radio-group {
	display: flex;
	justify-content: space-around;
	margin-top: 10px;
}

label {
	font-size: 1.2rem;
	display: block;
	margin-top: 15px;
	text-align: left;
	line-height: 1.2rem;
	font-weight: bold;
}

label:has(*) {
	font-weight: normal;
}

input[type="color"] {
	width: 50px;
	height: 50px;
	border: none;
	padding: 0;
	cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
	width: 1.2rem;
	height: 1.2rem;
	border: none;
	cursor: pointer;
	line-height: 1.2rem;
	margin-right: 10px;
	vertical-align: middle;
	margin-top: 0;
}

button,
.continue,
.previous,
.option {
	font-size: 1.2rem;
	padding: 12px 24px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
	display: inline-block;
	font-family: inherit;
	font-weight: normal;
}

button {
	background: #222;
	color: white;
	margin-left: 10px;
}

button:hover {
	background: #555;
}

.continue {
	background: rgb(247, 247, 27);
	color: #000;
	font-weight: bold;
	margin-top: 15px;
}

.continue:hover {
	background: #d6ac05;
}

.previous {
	background: #f40202;
	color: white;
}

.previous:hover {
	background: #8f1212;
}

.option {
	background: #32f402;
	color: black;
}

.option:hover {
	background: #0c490f;
}

.inner-container table {
	width: 100%;
	border-collapse: collapse;
	margin: 1em 0;
}

.inner-container th,
.inner-container td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}

.inner-container th {
	background-color: #3498db;
	color: white;
}

.inner-container img {
	max-width: 100%;
	border-radius: 4px;
}

.profile-pic {
	height: 200px;
	border-radius: 50% !important;
	object-fit: cover;
	border: 2px solid #333;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

hr {
	border: none;
	border-top: 1px solid #ddd;
	margin: 20px 0;
}

.inner-container hr {
	border: 0;
	height: 1px;
	background-color: #ddd;
	margin: 2em 0;
}

.divider {
	border: none;
	border-top: 1px solid #ddd;
	margin: 20px 0;
}

.progress-bar-container {
	width: 100%;
	height: 30px;
	background-color: #ddd;
	overflow: hidden;
	border-radius: 15px;
	position: relative;
	margin: 20px 0;
}

.progress-bar {
	width: 200%;
	height: 100%;
	background: repeating-linear-gradient(
		135deg,
		#f40202 0%,
		#f40202 25%,
		#fff 25%,
		#fff 50%
	);
	background-size: 30px 30px;
	animation: barberPole 20s linear infinite;
}

.progress-bar-stages {
	width: 100%;
	background-color: #f3f3f3;
	border-radius: 5px;
	overflow: hidden;
	margin: 20px 0;
}

.progress-stages {
	height: 20px;
	background-color: #4caf50;
	text-align: center;
	line-height: 20px;
	color: white;
	border-radius: 5px 0 0 5px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes barberPole {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0%);
	}
}

@media (max-width: 1000px) {
	body {
		padding: 1em;
	}

	.container {
		padding: 2em;
	}

	.inner-container {
		width: auto;
		margin: 1em auto;
		padding: 1.5em;
	}

	.inner-container.scroll {
		max-height: 300px !important;
	}

	h1 {
		font-size: 2rem;
	}

	.inner-container h1 {
		font-size: 2em;
	}

	input,
	select,
	textarea {
		font-size: 1rem;
	}

	button,
	.continue,
	.previous,
	.option {
		font-size: 1rem;
		padding: 10px 20px;
	}

	.profile-pic {
		height: 150px;
	}
}
