/**
 * Grace Giving — frontend styles
 *
 * The button colors are driven by inline styles set from the admin settings,
 * so these rules handle layout, shape, hover, and focus only.
 */

/* ── Button wrapper ────────────────────────────────────────────────────────── */

.gg-button-wrap {
	display: inline-block;
}

/* ── Give button ────────────────────────────────────────────────────────────── */

.gg-give-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.01em;
	cursor: pointer;
	text-decoration: none;
	transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.gg-give-button:hover {
	filter: brightness(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.gg-give-button:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

.gg-give-button:active {
	filter: brightness(0.95);
}

/* ── Inline iframe wrapper ──────────────────────────────────────────────────── */

.gg-inline-wrap {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.gg-inline-frame {
	display: block;
	width: 100%;
	min-height: 750px;
	border: none;
}

/* ── Admin notice shown to logged-in admins when Church ID is missing ───────── */

.gg-notice {
	background: #fcf0f1;
	border-left: 4px solid #d63638;
	padding: 10px 14px;
	font-size: 0.875rem;
	color: #1d2327;
	border-radius: 2px;
}
