/**
 * All custom CSS for the public-facing side of the Entel WP Personalized Campaigns plugin.
 *
 * This stylesheet is loaded by the Ewpc_Frontend class and styles elements
 * like shortcodes and the My Account page additions.
 *
 * @since 1.0.0
 */

/* --- Privacy Settings on My Account Page --- */
.ewpc-privacy-settings h3 {
	/* Match WooCommerce default heading style */
	font-size: 1.5em;
	margin-bottom: .5em;
	font-weight: 700;
}

.ewpc-privacy-settings .woocommerce-form-row {
	margin-bottom: 1em;
	padding: 0;
}

.ewpc-privacy-settings label.inline {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ewpc-privacy-settings .description {
	display: block;
	margin-top: 0.5em;
	font-size: 0.875em;
	color: #666;
	margin-left: 30px; /* Align description under the label text */
}

/* --- Unsubscribe Page Elements --- */
.ewpc-unsubscribe-container {
	padding: 2em;
	border: 1px solid #e0e0e0;
	background-color: #fdfdfd;
	max-width: 600px;
	margin: 2em auto;
	box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.ewpc-unsubscribe-notice {
	padding: 1em 1.5em;
	margin: 0 auto 2em;
	max-width: 600px;
	border-left-width: 4px;
	border-left-style: solid;
}

.ewpc-unsubscribe-notice.ewpc-success {
	background-color: #f7fcf7;
	border-left-color: #46b450;
}

.ewpc-unsubscribe-notice.ewpc-error {
	background-color: #fff6f6;
	border-left-color: #d63638;
}