#wpvibe-reload-toast {
	position: fixed;
	top: 40px;
	right: 20px;
	z-index: 999999;
	background: #1e293b;
	color: #f8fafc;
	padding: 12px 16px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 400px;
	animation: wpvibe-slide-in 0.3s ease;
}

#wpvibe-reload-toast .wpvibe-toast-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	flex-shrink: 0;
}

#wpvibe-reload-toast .wpvibe-toast-text {
	flex: 1;
	line-height: 1.4;
}

#wpvibe-reload-toast .wpvibe-toast-btn {
	background: #3b82f6;
	color: #fff;
	border: none;
	padding: 4px 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	flex-shrink: 0;
	text-decoration: none;
}

#wpvibe-reload-toast .wpvibe-toast-btn:hover {
	background: #2563eb;
}

#wpvibe-reload-toast .wpvibe-toast-dismiss {
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	font-size: 16px;
	padding: 0 2px;
	line-height: 1;
	flex-shrink: 0;
}

@keyframes wpvibe-slide-in {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
