.wpwp-softask-banner {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999999;
	width: 340px;
	max-width: calc(100vw - 40px);
	background: #ffffff;
	border: 1px solid #E2E4E9;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12);
	padding: 18px;
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.wpwp-softask-banner.wpwp-visible {
	opacity: 1;
	transform: translateY(0);
}

.wpwp-softask-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #EEF0FF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.wpwp-softask-icon::before {
	content: "\1F514";
}

.wpwp-softask-text {
	grid-column: 2;
}

.wpwp-softask-heading {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 600;
	color: #1F2937;
	line-height: 1.35;
}

.wpwp-softask-body {
	margin: 0;
	font-size: 13px;
	color: #4B5563;
	line-height: 1.45;
}

.wpwp-softask-actions {
	grid-column: 2;
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.wpwp-softask-allow,
.wpwp-softask-deny {
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	border-radius: 8px;
	padding: 8px 14px;
	cursor: pointer;
	border: none;
}

.wpwp-softask-allow {
	background: #4338CA;
	color: #ffffff;
}

.wpwp-softask-allow:hover {
	background: #3730A3;
}

.wpwp-softask-deny {
	background: transparent;
	color: #6B7280;
	padding-left: 4px;
	padding-right: 4px;
}

.wpwp-softask-deny:hover {
	color: #374151;
}

@media (max-width: 480px) {
	.wpwp-softask-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
		width: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wpwp-softask-banner {
		transition: none;
	}
}
