/**
 * Raptcha Admin Notifications CSS
 * FILE: assets/css/raptcha-admin-notifications.css
 * 
 * Minimal CSS for plugin admin notifications that appear across WordPress admin.
 * Loads globally for notice styling without the overhead of full admin interface CSS.
 */

.raptcha-review-notice {
	border-left-color: #2271b1 !important;
}

.raptcha-notice-content {
	display: flex;
	align-items: center;
	margin: 10px 0;
	gap: 12px;
}

.raptcha-notice-logo {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.raptcha-notification-badge {
	background: #d63638;
	color: white;
	border-radius: 50%;
	padding: 0;
	font-size: 11px;
	font-weight: bold;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	display: inline-block;
}

.raptcha-notice-button {
	text-decoration: none;
	vertical-align: baseline;
}

.raptcha-notice-button:hover {
	background: #2271b1 !important;
	border-color: #2271b1 !important;
	color: white !important;
}

@media (max-width: 768px) {
	.raptcha-notice-content {
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}
}