.location-popup.hidden {
	display: none;
}

.location-popup {
	position: fixed;
	inset: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.location-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, 0.55);
}

.location-popup__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 28rem;
	background: #ffffff;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	padding: 1.25rem;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.location-popup__close {
	position: absolute;
	top: 0.5rem;
	right: 0.6rem;
	border: 0;
	background: transparent;
	color: #6b7280;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

.location-popup__title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.5rem;
	padding-right: 1.5rem;
}

.location-popup__text {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #4b5563;
}

.location-popup__actions {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.location-popup__btn {
	border-radius: 0.75rem;
	padding: 0.6rem 0.9rem;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.location-popup__btn--primary {
	border: 1px solid #059669;
	background: #059669;
	color: #fff;
}

.location-popup__btn--primary:hover {
	background: #047857;
	border-color: #047857;
}

.location-popup__btn--ghost {
	border: 1px solid #d1d5db;
	background: #fff;
	color: #374151;
}

.location-popup__btn--ghost:hover {
	background: #f9fafb;
}
