/* Net72 Event Email — front-end compose screen.
   Deliberately restrained, theme-inheriting styles; tuned against the live theme. */

.n72ee-fe {
	max-width: 680px;
	margin: 0 auto;
}

.n72ee-fe-back {
	text-decoration: none;
	font-weight: 600;
	opacity: 0.85;
}
.n72ee-fe-back:hover {
	opacity: 1;
}

.n72ee-fe-title {
	margin: 0 0 4px;
}

.n72ee-fe-event {
	margin: 0 0 20px;
	font-size: 1.05em;
}

.n72ee-fe-msg {
	padding: 14px 16px;
	background: #f4f5f7;
	border-radius: 6px;
}

.n72ee-fe-row {
	margin-bottom: 18px;
}

.n72ee-fe-label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.n72ee-fe-statuses {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
}

.n72ee-fe-check {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 400;
}

.n72ee-fe-input {
	width: 100%;
	box-sizing: border-box;
	padding: 7px 14px;
	border: 1px solid rgba(51, 51, 51, 0.15);
	border-radius: 2px;
	font: inherit;
}

textarea.n72ee-fe-input {
	resize: vertical;
}

.n72ee-fe-hint {
	margin: 6px 0 0;
	font-size: 0.85em;
	opacity: 0.7;
}

.n72ee-fe-actions {
	display: flex;
	gap: 10px;
	margin: 22px 0 8px;
}

/* Fallback button styling for contexts without the theme's .button classes.
   On the Match-rendered screens, the theme's .button.button-secondary wins and matches. */
.n72ee-fe-btn {
	display: inline-block;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 2px;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	background: #000066;
	cursor: pointer;
	text-decoration: none;
}
.n72ee-fe-btn:hover:not([disabled]) {
	opacity: 0.9;
	color: #fff;
}
.n72ee-fe-btn[disabled] {
	opacity: 0.6;
	cursor: default;
}

.n72ee-fe-result {
	margin-top: 16px;
}

.n72ee-fe-notice {
	padding: 12px 14px;
	border-radius: 6px;
	margin-bottom: 10px;
}
.n72ee-fe-notice-success {
	background: #e6f4ea;
	border: 1px solid #b7dfc4;
}
.n72ee-fe-notice-warning {
	background: #fdf6e3;
	border: 1px solid #efe0a8;
}
.n72ee-fe-notice-error {
	background: #fdecea;
	border: 1px solid #f3c0bb;
}

.n72ee-fe-list {
	width: 100%;
	border-collapse: collapse;
	margin-top: 8px;
	font-size: 0.95em;
}
.n72ee-fe-list th,
.n72ee-fe-list td {
	text-align: left;
	padding: 6px 10px;
	border-bottom: 1px solid #e6e8eb;
}
.n72ee-fe-list th {
	font-weight: 600;
}

/* The "Send Emails" button injected into EMP's bookings-admin button row. */
.n72ee-send-btn {
	margin-left: 6px;
}
