 body {
	box-sizing: border-box;
	margin: 0;
	font-family: 'Raleway', sans-serif;
	background-color: #eed39a;
	min-height: 100%;
}
.container {
	max-width: 420px;
	width: 90%;
	margin: 0 auto;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.header {
	background-color: #000000;
	color: #ffffff;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.back-button {
	background: none;
	border: none;
	color: #ffffff;
	font-size: 18px;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background-color 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.back-button:hover {
	background-color: rgba(255, 255, 255, 0.1);
}
.header-title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0;
}
.content {
	padding: 24px;
}
.welcome-text {
	color: #6b7280;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 24px;
	text-align: center;
	letter-spacing: 0.50px;
}
.section-title {
	font-size: 20px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 30px;
	text-align: center;
	letter-spacing: 1px;
}
.rating-container {
	display: flex;
	justify-content: space-between;
	margin-bottom: 32px;
	gap: 8px;
}
.rating-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition: transform 0.2s ease;
	flex: 1;
}
.rating-image {
	width: 50px;
	height: 50px;
	transition: all 0.3s ease;
	filter: grayscale(0);
}
.rating-item:hover .rating-image {
	transform: scale(1.1);
}
.rating-item.selected .rating-image {
	transform: scale(1.1);
	filter: grayscale(0);
}
/* Only apply greyscale to non-selected items when there is a selection */
.has-selection .rating-item:not(.selected) .rating-image {
	filter: grayscale(100%);
}
.rating-label {
	font-size: 12px;
	color: #6b7280;
	margin-top: 15px;
	text-align: center;
	line-height: 1.2;
	letter-spacing: 0.50px;
}
.impact-section {
	margin-bottom: 24px;
}
.impact-options {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 16px;
	align-items: center;
}
.impact-option {
	padding: 16px 24px;
	border: 2px solid #374151;
	border-radius: 25px;
	background-color: #ffffff;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
	font-size: 16px;
	color: #374151;
	font-weight: 500;
	width: 300px;
	letter-spacing: 1px;
}
.impact-option:hover {
	border-color: #ecd198;
	background-color: #eff6ff;
}
.impact-option.selected {
	border-color: #ecd198;
	background-color: #ecd198;
	color: #ffffff;
}
.comments-name {
	margin-bottom: 24px;
	margin-top: 0px;
}
.comments-mobile {
	margin-bottom: 40px;
	margin-top: 0px;
}
.comments-section {
	margin-bottom: 24px;
	margin-top: 40px;
}
.comments-label {
	font-size: 16px;
	font-weight: 500;
	color: #1f2937;
	margin-bottom: 14px;
	letter-spacing: 1px;
}
.comments-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.8px solid #dedede;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    resize: none;
    outline: none;
    transition: all 0.25s ease-in-out;
    box-sizing: border-box;
    margin-top: 15px;
}

/* Focus Effect */
.comments-input:focus {
    border-color: #ff7b32;
    background: #fff;
    box-shadow: 0 0 5px rgba(255, 123, 50, 0.35);
}
.comments-textarea {
	width: 100%;
	min-height: 100px;
	padding: 12px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-family: inherit;
	font-size: 14px;
	resize: vertical;
	transition: border-color 0.2s;
	box-sizing: border-box;
	margin-top: 10px;
}
.comments-textarea:focus {
	outline: none;
	border-color: #ecd198;
}
.submit-button {
	width: 100%;
	padding: 16px;
	background-color: #3b3b3b;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}
.submit-button:hover:not(:disabled) {
	background-color: #2563eb;
	transform: translateY(-1px);
}
.submit-button:disabled {
	background-color: #9ca3af;
	cursor: not-allowed;
	transform: none;
	opacity: 0.5;
}
.submit-button:active:not(:disabled) {
	transform: translateY(0);
}
.success-message {
	background-color: #10b981;
	color: #ffffff;
	padding: 12px;
	border-radius: 8px;
	text-align: center;
	margin-bottom: 16px;
	display: none;
}
.loading {
	opacity: 0.7;
	pointer-events: none;
}

/* Notification animations */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideOut {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-10px);
	}
}

.inline-message {
	animation: slideIn 0.3s ease-out;
}

/* CAPTCHA Styles */
.captcha-section {
	margin: 24px 0;
	padding: 16px;
	background-color: #f9fafb;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
}

.captcha-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 12px;
}

.captcha-image-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	border: 2px solid #d1d5db;
	border-radius: 6px;
	padding: 8px;
	overflow: hidden;
}

#captcha-image {
	display: block;
	max-width: 100%;
	height: auto;
	user-select: none;
	pointer-events: none;
}

.captcha-refresh {
	position: absolute;
	right: 8px;
	top: 8px;
	background-color: #3b82f6;
	border: none;
	color: white;
	width: 32px;
	height: 32px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s;
	padding: 0;
}

.captcha-refresh:hover {
	background-color: #2563eb;
}

.captcha-refresh:active {
	background-color: #1d4ed8;
}

.captcha-input-wrapper {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.captcha-input-wrapper .comments-input {
	text-transform: uppercase;
	font-family: 'Courier New', monospace;
	font-size: 16px;
	letter-spacing: 2px;
}