.web-notification-consent {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	width: min(90%, 420px);
	background: #111827;
	color: #f9fafb;
	padding: 20px;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	z-index: 99999;
	display: none;
}

.web-notification-consent.visible {
	display: block;
}

.web-notification-consent.hidden {
	display: none;
}

.web-notification-consent__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

.web-notification-consent__actions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 16px;
}

.web-notification-consent__actions button {
	border: none;
	padding: 10px 14px;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.web-notification-consent__allow {
	background: linear-gradient(135deg, #10b981, #22d3ee);
	color: #0f172a;
}

.web-notification-consent__later,
.web-notification-consent__decline {
	background: #1f2937;
	color: #f9fafb;
}

.web-notification-consent__actions button:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.web-notification-debug {
	border: 1px solid rgba(148, 163, 184, 0.4);
	padding: 16px;
	border-radius: 12px;
	background: rgba(15, 23, 42, 0.04);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
	font-size: 13px;
	margin: 20px 0;
}

.web-notification-debug h3 {
	margin-top: 0;
}

.web-notification-debug pre {
	background: #0f172a;
	color: #f8fafc;
	padding: 12px;
	border-radius: 8px;
	overflow: auto;
	max-height: 240px;
}

.web-notification-debug button {
	border: none;
	background: #2563eb;
	color: #fff;
	padding: 8px 16px;
	border-radius: 999px;
	cursor: pointer;
	margin-top: 12px;
}
