html,
body {
	height: 100%;
	font-family: "M PLUS 1p", sans-serif;
	font-weight: 400;
	font-style: normal;
}

:root {
	--seminudge-form-focus-color: #2fb344;
	--seminudge-form-focus-ring-color: rgba(47, 179, 68, 0.25);
}

html .form-control:focus,
html .form-select:focus,
html .form-check-input:focus {
	border-color: var(--seminudge-form-focus-color);
	box-shadow: 0 0 0 0.25rem var(--seminudge-form-focus-ring-color);
}

/* body.sticky-footer {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
} */

/* .main-content {
	flex: 1 0 auto;
} */

/* .footer {
	flex-shrink: 0;
	position: static;
	width: 100%;
	margin-top: 20px;
} */

/* .text_left {
	text-align: left;
} */

/* Mandala styles */
.mandala-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	max-width: 480px;
}

.mandala-cell-wrapper {
	position: relative;
	cursor: pointer;
}

.mandala-radio-btn {
	white-space: normal;
	text-align: center;
}

.mandala-center-label {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	line-height: 1.2;
	padding: 0.5rem;
	background: #f8f9fa;
	border: 2px solid #0d6efd;
	border-radius: 6px;
	font-weight: 700;
	color: #0d6efd;
}

.mandala-center-label.small {
	font-size: 0.9rem;
}

.speaker-avatar-72 {
	width: 72px;
	height: 72px;
	object-fit: cover;
}

/* .error-message {
	color: red;
} */

/* .required-asterisk {
	color: #dc3545;
	font-weight: bold;
	margin-left: 0.2em;
} */

/* header {
	margin-bottom: 20px;
} */

@media (min-width: 992px) {
	:root {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

.qanda-reaction-button-wrap {
	position: relative;
	display: inline-flex;
}

.qanda-reaction-feedback {
	position: absolute;
	left: calc(100% + 0.5rem);
	top: 50%;
	transform: translate(-0.25rem, -50%);
	padding: 0.3rem 0.55rem;
	border: 1px solid #198754;
	border-radius: 999px;
	background: #fff;
	color: #198754;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	box-shadow: 0 2px 6px rgba(25, 135, 84, 0.18);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.qanda-reaction-feedback.is-visible {
	opacity: 1;
	transform: translate(0, -50%);
}

.qanda-responsive-split {
	container-type: inline-size;
}

.qanda-responsive-split-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.5rem;
	align-items: center;
}

@container (min-width: 22rem) {
	.qanda-responsive-split-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
