.btn-yes {
	background-color: #1a1a1a;
	border-radius: 4px;
	color: #ffffff !important;
	display: block;
	width: 100%;
	font-size: clamp(1rem, 1vw + 1rem, 5rem);
	font-weight: bold;
	text-align: left;
	padding: 14px 0;
	border-radius: 4px;
	cursor: pointer;
}

.btn-no {
	background-color: #192f61;
	border-radius: 4px;
	color: #ffffff !important;
	display: block;
	width: 100%;
	font-size: clamp(1rem, 1vw + 1rem, 5rem);
	font-weight: bold;
	text-align: left;
	padding: 14px 0;
	border-radius: 4px;
	cursor: pointer;
}

.btn-hell-no {
	background-color: #b31b15;
	border-radius: 4px;
	color: #ffffff !important;
	display: block;
	width: 100%;
	font-size: clamp(2rem, 1vw + 1.5rem, 5rem);
	font-weight: bold;
	text-align: left;
	padding: 14px 0;
	border-radius: 4px;
	cursor: pointer;
}

.btn-yes:hover {
	background-color: #333333; 
	color: #ffffff !important;
}

.btn-no:hover {
	background-color: #2a4d8a;
	color: #ffffff !important;
}

.btn-hell-no:hover {
	background-color: #d12a23;
	color: #ffffff !important;
}

.confirm-hidden {
	display: none;
}

.confirm-show {
	display: block;
}

.list-cross {
	font-family: Arial;
	font-size: 24px;
	font-weight: 900;
	color: #ab0000;
	-webkit-text-stroke: 1px black;
}

ul {
	list-style-type: "❌";
}

.urgency-bar {
	background-color: #B31B15;
	color: #ffffff;
	text-align: center;
	padding: 10px 15px;
	border-radius: 4px;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.5px;
}

.signdiv {
	border-style: none;
	background-color: #1a1a1a;
	padding: 20px 15px;
	border-radius: 4px;
	margin-top: 10px;
}

.signdiv input[type="text"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 14px;
	margin-bottom: 8px;
}
/* Survey page */
/* Question card */
.question-card {
	background-color: #fafafa;
	border: 1px solid #e5e5e5;
	border-left: 4px solid #B31B15;
	border-radius: 4px;
	padding: 20px 22px 22px;
	margin-top: 18px;
	position: relative;
}

.question-number {
	display: inline-block;
	background-color: #B31B15;
	color: #ffffff;
	font-weight: bold;
	font-size: 14px;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
}

.question-card h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 12px;
	line-height: 1.4;
	color: #1a1a1a;
}

.question-card p {
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 12px;
	color: #333333;
}

.question-ask {
	font-size: 16px !important;
	font-weight: bold !important;
	color: #1a1a1a !important;
	margin: 16px 0 10px !important;
}

/* Answer options — styled radio rows */
.answer-option {
	display: block;
	position: relative;
	margin-top: 8px;
}

.answer-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.answer-option .option-label {
	display: block;
	background-color: #ffffff;
	border: 1.5px solid #d5d5d5;
	border-radius: 4px;
	padding: 12px 16px 12px 44px;
	font-size: 16px;
	line-height: 1.4;
	color: #333333;
	cursor: pointer;
	position: relative;
	transition: all 0.15s ease;
}

.answer-option .option-label:before {
	content: "";
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 2px solid #aaaaaa;
	border-radius: 50%;
	background-color: #ffffff;
	box-sizing: border-box;
}

/* YES (positive/red-accent) options */
.answer-option.yes .option-label { border-left: 4px solid #B31B15; }
.answer-option.yes:hover .option-label {
	background-color: #fef5f5;
	border-color: #B31B15;
}
.answer-option.yes input[type="radio"]:checked + .option-label {
	background-color: #B31B15;
	border-color: #6B0F0C;
	color: #ffffff;
	font-weight: bold;
}
.answer-option.yes input[type="radio"]:checked + .option-label:before {
	background-color: #ffffff;
	border-color: #ffffff;
	box-shadow: inset 0 0 0 4px #B31B15;
}

/* NO (gray-accent) options */
.answer-option.no .option-label { border-left: 4px solid #999999; }
.answer-option.no:hover .option-label {
	background-color: #f5f5f5;
	border-color: #777777;
}
.answer-option.no input[type="radio"]:checked + .option-label {
	background-color: #444444;
	border-color: #222222;
	color: #ffffff;
	font-weight: bold;
}
.answer-option.no input[type="radio"]:checked + .option-label:before {
	background-color: #ffffff;
	border-color: #ffffff;
	box-shadow: inset 0 0 0 4px #444444;
}

.btn-wrap {
	text-align: center;
	margin: 25px 0px;
}

.btn-donate {
	color: #ffffff;
	background-color: #B31B15;
	border-color: #6B0F0C;
	font-weight: bold;
	font-style: italic;
	font-size: 20px;
	padding: 14px 60px;
	border-radius: 4px;
	border: 1px solid #6B0F0C;
	cursor: pointer;
}
.btn-donate:hover { background-color: #d12a23; }