/**
 * Canonical "Sign in with Google" button.
 *
 * Single source of truth for the Google sign-in button used by the poll
 * block, the quiz block, and any kbs_firebase_login_button() caller. Styled
 * per Google's branding guidelines (white surface, brand-grey border, the
 * multi-colour "G" mark). The auth-app pages (/auth/login, /auth/register)
 * match this spec via their own bundled stylesheet.
 */
.kbs-google-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding: 0.625rem 1.25rem;
	border: 1px solid #dadce0;
	border-radius: var(--wp--custom--button--border-radius, 4px);
	background-color: #fff;
	color: #3c4043;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.25;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.kbs-google-btn svg {
	flex-shrink: 0;
}

.kbs-google-btn:hover {
	background-color: #f8faff;
	border-color: #d2e3fc;
	box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.kbs-google-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	box-shadow: none;
}
