body {
	font-family: Arial, Helvetica, sans-serif; /* System font instead of Inter */
	background-color: #e0e7ff; /* A lighter blue similar to #CCCFFF */
	background-image: url('bottom.png');
	background-repeat: repeat-x;
	background-position: left bottom;
	background-attachment: scroll;
	min-height: 100vh; /* Ensure body takes full viewport height */
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}

.main-content-wrapper {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem; /* p-4 */
}
@media (min-width: 640px) { /* sm: */
	.main-content-wrapper {
		padding: 1.5rem; /* sm:p-6 */
	}
}
@media (min-width: 1024px) { /* lg: */
	.main-content-wrapper {
		padding: 2rem; /* lg:p-8 */
	}
}

.card {
	background-color: #ffffff;
	padding: 1.5rem; /* p-6 */
	border-radius: 0.75rem; /* rounded-xl */
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-2xl */
	max-width: 48rem; /* max-w-3xl (approx 48rem) */
	width: 100%;
	text-align: center;
}
@media (min-width: 640px) { /* sm: */
	.card {
		padding: 2rem; /* sm:p-8 */
	}
}
@media (min-width: 1024px) { /* lg: */
	.card {
		padding: 2.5rem; /* lg:p-10 */
	}
}

.main-title {
	font-size: 2.20rem; /* text-3xl */
	font-weight: 800; /* font-extrabold */
	color: #166534; /* text-green-800 */
	margin-bottom: 1rem; /* mb-4 */
	line-height: 1.25; /* leading-tight */
}
@media (min-width: 640px) { /* sm: */
	.main-title {
		font-size: 2.5rem; /* sm:text-4xl */
	}
}
@media (min-width: 1024px) { /* lg: */
	.main-title {
		font-size: 3rem; /* lg:text-5xl */
	}
}

.subtitle {
	font-size: 1.125rem; /* text-lg */
	color: #4b5563; /* text-gray-600 */
	font-style: italic; /* italic */
	margin-bottom: 1.5rem; /* mb-6 */
}
@media (min-width: 640px) { /* sm: */
	.subtitle {
		font-size: 1.25rem; /* sm:text-xl */
	}
}

.section-heading {
	font-size: 1.25rem; /* text-xl */
	font-weight: 600; /* font-semibold */
	color: #374151; /* text-gray-700 */
	margin-bottom: 2rem; /* mb-8 */
}
@media (min-width: 640px) { /* sm: */
	.section-heading {
		font-size: 1.5rem; /* sm:text-2xl */
	}
}
@media (min-width: 1024px) { /* lg: */
	.section-heading {
		font-size: 1.875rem; /* lg:text-3xl */
	}
}

.highlight-text {
	font-weight: 700; /* font-bold */
	color: #22c55e; /* text-green-600 */
}

.input-prompt {
	font-size: 1.5rem; /* text-2xl */
	font-weight: 700; /* font-bold */
	color: #1f2937; /* text-gray-800 */
	margin-bottom: 1rem; /* mb-4 */
}
@media (min-width: 640px) { /* sm: */
	.input-prompt {
		font-size: 1.875rem; /* sm:text-3xl */
	}
}
.comment {
	font-size: 1.125rem; /* text-lg */
	color: #4b5563; /* text-gray-600 */
	font-style: italic; /* italic */
	margin-bottom: 1.5rem; /* mb-6 */
}

.text-input {
	width: 100%;
	max-width: 600px; /* Added for centering */
	margin-left: auto; /* Added for centering */
	margin-right: auto; /* Added for centering */
	padding: 1rem; /* p-4 */
	border: 2px solid #86efac; /* border-2 border-green-300 */
	border-radius: 0.5rem; /* rounded-lg */
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
	outline: none; /* focus:outline-none */
	transition: all 0.3s ease-in-out; /* transition duration-300 ease-in-out */
	resize: vertical; /* resize-y */
	font-size: 1.125rem; /* text-lg */
}
.text-input:focus {
	border-color: transparent; /* focus:border-transparent */
	box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.75); /* focus:ring-4 focus:ring-green-400 */
}

.submit-button {
	margin-top: 1.5rem; /* mt-6 */
	background-color: #047857; /* bg-green-700 */
	color: #ffffff; /* text-white */
	font-weight: 700; /* font-bold */
	padding: 0.75rem 2rem; /* py-3 px-8 */
	border-radius: 9999px; /* rounded-full */
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
	transition: all 0.3s ease-in-out; /* transition duration-300 ease-in-out */
	cursor: pointer; /* cursor-pointer */
	font-size: 1.25rem; /* text-xl */
	border: none; /* remove default button border */
}
.submit-button:hover {
	background-color: #065f46; /* hover:bg-green-800 */
	transform: scale(1.05); /* transform hover:scale-105 */
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* hover:shadow-xl */
}
.submit-button:focus {
	outline: none; /* focus:outline-none */
	box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.75); /* focus:ring-4 focus:ring-green-500 focus:ring-opacity-75 */
}

.result-box {
	background-color: #f0fdf4; /* bg-green-50 */
	padding: 1.5rem; /* p-6 */
	border-radius: 0.5rem; /* rounded-lg */
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
	margin-top: 2.5rem; /* mt-10 */
	width: 100%;
	max-width: 600px; /* Added for centering */
	margin-left: auto; /* Added for centering */
	margin-right: auto; /* Added for centering */
	border: 1px solid #bbf7d0; /* border border-green-200 */
}

.result-heading {
	font-size: 1.5rem; /* text-2xl */
	font-weight: 700; /* font-bold */
	color: #166534; /* text-green-800 */
	margin-bottom: 0.75rem; /* mb-3 */
}

.result-text {
	font-size: 1.125rem; /* text-lg */
	color: #374151; /* text-gray-700 */
	line-height: 1.625; /* leading-relaxed */
}

.footer-content {
	width: 100%;
	text-align: center;
	padding: 1rem; /* py-4 px-4 */
	color: #4b5563; /* text-gray-600 */
	font-size: 0.875rem; /* text-sm */
}

.footer-text-mb {
	margin-bottom: 0.5rem; /* mb-2 */
}

.footer-text-italic {
	font-style: italic; /* italic */
}

.cow-footer {
	height: 290px;
	background-image: url('cow.png');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-attachment: scroll;
	width: 100%;
	margin-top: 1rem; /* mt-4 */
}

/* Original link styles */
a:link {
	text-decoration: none;
	color: #B301CE;
}
a:visited {
	color: #B301CE;
	text-decoration: none;
}
a:hover {
	color: #FF0000;
	text-decoration: none;
	font-weight: bold;
}
a:active {
	color: #FF0000;
	text-decoration: none;
}
