.location-heartbeat-status {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 16px;
	z-index: 10000;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

.location-heartbeat-status.hidden {
	display: none;
}

.location-heartbeat-card {
	width: min(560px, 100%);
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #263238;
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	pointer-events: auto;
}

.location-heartbeat-status.denied .location-heartbeat-card,
.location-heartbeat-status.unavailable .location-heartbeat-card {
	background: #4e342e;
}

.location-heartbeat-status.send-failed .location-heartbeat-card {
	background: #37474f;
}

.location-heartbeat-icon {
	flex: 0 0 auto;
}

.location-heartbeat-copy {
	flex: 1 1 auto;
	min-width: 0;
}

.location-heartbeat-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.location-heartbeat-message {
	margin-top: 2px;
	font-size: 12px;
	line-height: 1.3;
	opacity: 0.9;
}

.location-heartbeat-retry {
	flex: 0 0 auto;
	white-space: nowrap;
}

.location-heartbeat-retry:disabled {
	opacity: 0.75;
}

.location-heartbeat-dismiss {
	flex: 0 0 auto;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.8;
}

.location-heartbeat-dismiss:hover,
.location-heartbeat-dismiss:focus {
	opacity: 1;
}

@media (max-width: 600px) {
	.location-heartbeat-card {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.location-heartbeat-retry {
		margin-left: 36px;
	}
}
