/**
 * Unsubscribe Page Styles
 *
 * Matches the transactional email template look and feel.
 *
 * @link       https://rhapsodyplugins.com/helpmate
 * @since      1.3.0
 *
 * @package    Helpmate
 * @subpackage Helpmate/public/css
 */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background-color: #ffffff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.helpmate-unsubscribe-container {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	max-width: 500px;
	width: 100%;
	padding: 40px 30px;
	text-align: center;
	border: 2px solid #455CFE;
}

.helpmate-unsubscribe-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.helpmate-unsubscribe-icon.success {
	background: #10b981;
}

.helpmate-unsubscribe-icon.error {
	background: #ef4444;
}

.helpmate-unsubscribe-icon svg {
	width: 32px;
	height: 32px;
	color: #ffffff;
}

.helpmate-unsubscribe-title {
	font-size: 28px;
	font-weight: bold;
	color: #455CFE;
	margin-bottom: 10px;
}

.helpmate-unsubscribe-message {
	font-size: 14px;
	color: #666666;
	line-height: 1.5;
	margin-bottom: 25px;
}

.helpmate-unsubscribe-btn {
	display: inline-block;
	padding: 12px 28px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	cursor: pointer;
	border: none;
	transition: background-color 0.2s ease;
}

.helpmate-unsubscribe-btn.primary {
	background: #455CFE;
	color: #ffffff;
}

.helpmate-unsubscribe-btn.primary:hover {
	background: #3a4ed9;
}

.helpmate-unsubscribe-btn.secondary {
	background: #f3f4f6;
	color: #666666;
	margin-top: 10px;
}

.helpmate-unsubscribe-btn.secondary:hover {
	background: #e5e7eb;
}

.helpmate-unsubscribe-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.helpmate-unsubscribe-site {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
}

.helpmate-unsubscribe-site a {
	color: #999999;
	text-decoration: none;
	font-size: 12px;
}

.helpmate-unsubscribe-site a:hover {
	color: #666666;
}

.helpmate-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	border-top-color: transparent;
	animation: helpmate-spin 0.8s linear infinite;
	margin-right: 8px;
	vertical-align: middle;
}

@keyframes helpmate-spin {
	to {
		transform: rotate(360deg);
	}
}

.helpmate-hidden {
	display: none !important;
}
