
/* ── GF Tooltip Lite ─────────────────────────────────────────────────── */
.gftl-tooltip-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-left: 6px;
	vertical-align: middle;
	cursor: default;
}

/* The circular ? badge */
.gftl-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #0073aa;
	/* WP admin blue; override in your theme */
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	user-select: none;
	transition: background .15s ease;
}

.gftl-tooltip-wrap:hover .gftl-icon, .gftl-tooltip-wrap:focus .gftl-icon {
	background: #005177;
}

/* The tooltip bubble */
.gftl-bubble {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 180px;
	max-width: 280px;
	padding: 8px 12px;
	border-radius: 4px;
	background: #1d2327;
	color: #f0f0f0;
	font-size: 13px;
	line-height: 1.5;
	text-align: left;
	white-space: normal;
	word-wrap: break-word;
	z-index: 9999;
	transition: opacity .18s ease, transform .18s ease;
	transform: translateX(-50%) translateY(4px);
}

/* Arrow */
.gftl-bubble::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #1d2327;
}

/* Show on hover / focus */
.gftl-tooltip-wrap:hover .gftl-bubble, .gftl-tooltip-wrap:focus .gftl-bubble, .gftl-tooltip-wrap.is-visible .gftl-bubble {
	visibility: visible;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* RTL support */
[dir="rtl"] .gftl-tooltip-wrap {
	margin-left: 0;
	margin-right: 6px;
}

.gravity-forms-power-automate-pro-status .status {
	font-weight: bold;
}

.gravity-forms-power-automate-pro-status .status.red {
	color: #a00000;
}

.gravity-forms-power-automate-pro-status .status.green {
	color: #00a000;
}

.gravity-forms-power-automate-pro-status .description {
	color: #000;
}

.gform-settings-input-with-copy {
	position: relative;
	transition: all .2s ease-in-out;
	cursor: pointer;
}

.gform-settings-input-with-copy::after {
	content: "📋";
	position: absolute;
	right: .5rem;
	top: 50%;
	transform: translateY(-50%);
	padding: .1rem;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 0 0 0 .25rem;
	font-size: .75rem;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.gform-settings-input-with-copy:hover::after {
	background: #eee;
	border-color: #999;
	color: #000;
}

.gform-settings-input-with-copy.copied::after {
	content: "✔ Copied!";
	background: #333;
	color: #fff;
}

#gravity-forms-power-automate-pro-reprocess .disabled {
	opacity: .5;
	font-style: italic;
}

#gravity-forms-power-automate-pro-reprocess .triggerOn {
	font-style: italic;
	opacity: .5;
	font-size: small;
}
