#pushsub-bell {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	background: #2271b1;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(0,0,0,0.25);
	z-index: 99998;
	animation: pushsub-pulse 2.5s infinite;
}

@keyframes pushsub-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(34,113,177,0.4); }
	70%  { box-shadow: 0 0 0 14px rgba(34,113,177,0); }
	100% { box-shadow: 0 0 0 0 rgba(34,113,177,0); }
}

#pushsub-popup {
	position: fixed;
	bottom: 92px;
	right: 24px;
	width: 280px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.2);
	padding: 18px;
	z-index: 99999;
	display: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#pushsub-popup.pushsub-visible {
	display: block;
}

#pushsub-popup p {
	margin: 0 0 14px 0;
	font-size: 14px;
	color: #333;
	line-height: 1.4;
}

.pushsub-popup-buttons {
	display: flex;
	gap: 8px;
}

.pushsub-popup-buttons button {
	flex: 1;
	padding: 8px 10px;
	border: none;
	border-radius: 6px;
	font-size: 13px;
	cursor: pointer;
}

#pushsub-allow {
	background: #2271b1;
	color: #fff;
}

#pushsub-disallow {
	background: #eee;
	color: #444;
}
