.gfgmp-picker {
	--gfgmp-bg: #ffffff;
	--gfgmp-border: #d8dee6;
	--gfgmp-text: #172033;
	--gfgmp-muted: #5f6f83;
	--gfgmp-primary: #0f766e;
	--gfgmp-primary-dark: #115e59;
	--gfgmp-danger: #b42318;
	--gfgmp-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
	color: var(--gfgmp-text);
}

.gfgmp-card {
	overflow: hidden;
	background: var(--gfgmp-bg);
	border: 1px solid var(--gfgmp-border);
	border-radius: 22px;
	box-shadow: var(--gfgmp-shadow);
}

.gfgmp-toolbar,
.gfgmp-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 20px;
}

.gfgmp-toolbar {
	background: linear-gradient(135deg, #f8fafc 0%, #ecfeff 100%);
	border-bottom: 1px solid var(--gfgmp-border);
}

.gfgmp-copy {
	min-width: 0;
}

.gfgmp-eyebrow,
.gfgmp-label {
	display: block;
	margin-bottom: 4px;
	color: var(--gfgmp-primary-dark);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gfgmp-helper {
	margin: 0;
	color: var(--gfgmp-muted);
	font-size: 0.95rem;
	line-height: 1.45;
}

.gfgmp-actions,
.gfgmp-footer-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.gfgmp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 9px 14px;
	border: 1px solid var(--gfgmp-border);
	border-radius: 999px;
	background: #ffffff;
	color: var(--gfgmp-primary-dark);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.gfgmp-button:hover,
.gfgmp-button:focus {
	border-color: rgba(15, 118, 110, 0.35);
	box-shadow: 0 10px 22px rgba(15, 118, 110, 0.14);
	transform: translateY(-1px);
}

.gfgmp-button--primary {
	border-color: var(--gfgmp-primary);
	background: var(--gfgmp-primary);
	color: #ffffff;
}

.gfgmp-button--primary:hover,
.gfgmp-button--primary:focus {
	background: var(--gfgmp-primary-dark);
	color: #ffffff;
}

.gfgmp-button--ghost {
	background: rgba(255, 255, 255, 0.78);
}

.gfgmp-search-wrap {
	padding: 14px 20px;
	background: #ffffff;
	border-bottom: 1px solid var(--gfgmp-border);
}

.gfgmp-search {
	width: 100%;
	min-height: 46px;
	padding: 10px 14px;
	border: 1px solid var(--gfgmp-border);
	border-radius: 14px;
	background: #f8fafc;
	color: var(--gfgmp-text);
	font-size: 1rem;
}

.gfgmp-search:focus {
	border-color: var(--gfgmp-primary);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
	outline: none;
}

.gfgmp-map-shell {
	position: relative;
	background: #dbeafe;
}

.gfgmp-map {
	width: 100%;
	min-height: 260px;
}

.gfgmp-status {
	position: absolute;
	right: 16px;
	bottom: 16px;
	left: 16px;
	z-index: 1;
	pointer-events: none;
	color: #ffffff;
	font-size: 0.92rem;
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.gfgmp-status:empty {
	display: none;
}

.gfgmp-status--error {
	display: inline-block;
	width: auto;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(180, 35, 24, 0.95);
	text-shadow: none;
}

.gfgmp-footer {
	background: #ffffff;
	border-top: 1px solid var(--gfgmp-border);
}

.gfgmp-coordinate {
	display: block;
	color: var(--gfgmp-text);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1rem;
	font-weight: 800;
}

.gfgmp-pin {
	position: relative;
	width: 34px;
	height: 34px;
	border: 3px solid #ffffff;
	border-radius: 50% 50% 50% 0;
	background: #f97316;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.38);
	transform: rotate(-45deg);
}

.gfgmp-pin::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ffffff;
	content: "";
	transform: translate(-50%, -50%);
}

@media (max-width: 640px) {
	.gfgmp-toolbar,
	.gfgmp-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.gfgmp-actions,
	.gfgmp-footer-actions {
		width: 100%;
	}

	.gfgmp-button {
		flex: 1 1 auto;
	}
}
