/* ==========================================================================
   El Toro Employee Portal — consolidated stylesheet
   --------------------------------------------------------------------------
   The single stylesheet for the portal. Two parts:
     1. Structural base — reset/layout/typography for the page wrappers,
        body font, links, buttons and inputs.
     2. Portal styles — the full set of .portal_* / fixed-nav / recipe /
        kitchen rules that define the portal's visual identity.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css?family=Anton|Quicksand|Libre+Baskerville');
@import url('https://fonts.googleapis.com/css2?family=Metrophobic&display=swap');

/* --------------------------------------------------------------------------
   1. Structural base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	padding: 0;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.6em 0;
	color: #333;
	font-weight: 600;
	line-height: 1.3;
}

a { color: #13aff0; text-decoration: none; }
a:hover { color: #0d8ecf; }

img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }

p { margin: 0 0 1.5em 0; }

/* Page wrappers (markup emitted by layout-header.php / layout-footer.php) */
#outer-wrap { width: 100%; }
#wrap { width: 100%; }
#main.site-main { display: block; width: 100%; }

/* ==========================================================================
   Global top bars (markup emitted by layout-header.php)
   Two stacked, full-width bars that sit above every page:
     1. a slim brand bar that always links home, and
     2. a tall red banner showing the current page's title.
   #top-bar-wrap is hidden by the "clean" header mode.
   ========================================================================== */
#top-bar-wrap {
	width: 100%;
	margin-bottom: 1.5em;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

/* --- Slim brand bar --------------------------------------------------- */
.etp-title-bar {
	position: relative;
	width: 100%;
	background: linear-gradient(180deg, #2c0d0d 0%, #1c0808 100%);
	text-align: center;
	padding: 0.6em 1em;
	min-height: 2.9em;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid rgba(183, 156, 97, 0.35);
}
.etp-title-bar-link {
	display: inline-block;
	color: #ecd9b0;
	font-family: 'Quicksand', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 0.8em;
	font-weight: 700;
	letter-spacing: 0.42em;
	/* the tracking pushes the text right; nudge it back to stay centered */
	text-indent: 0.42em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.18s ease;
}
.etp-title-bar-link:hover,
.etp-title-bar-link:focus {
	color: #ffffff;
	text-decoration: none;
}

/* --- Compact user menu (top-right of the brand bar) ------------------- */
.etp-user-menu {
	position: absolute;
	top: 50%;
	right: 0.75em;
	transform: translateY(-50%);
}
.etp-user-menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	margin: 0;
	padding: 0.25em 0.5em;
	background: transparent;
	border: 0;
	border-radius: 5px;
	color: #ecd9b0;
	font-family: 'Quicksand', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height: 1.15;
	cursor: pointer;
	transition: background 0.15s ease;
}
.etp-user-menu-toggle:hover,
.etp-user-menu:focus-within .etp-user-menu-toggle {
	background: rgba(255, 255, 255, 0.08);
}
.etp-user-identity {
	text-align: right;
}
.etp-user-name {
	display: block;
	color: #ffffff;
	font-size: 0.8em;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.etp-user-position {
	display: block;
	color: #c9a87a;
	font-size: 0.62em;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.etp-user-caret {
	color: #c9a87a;
	font-size: 0.7em;
	transition: transform 0.15s ease;
}
.etp-user-menu:hover .etp-user-caret,
.etp-user-menu:focus-within .etp-user-caret {
	transform: rotate(180deg);
}

.etp-user-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 0.45em;
	min-width: 11em;
	background: #ffffff;
	border-radius: 7px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	overflow: hidden;
	text-align: left;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.etp-user-menu:hover .etp-user-dropdown,
.etp-user-menu:focus-within .etp-user-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.etp-user-dropdown a {
	display: block;
	padding: 0.72em 1.15em;
	color: #552222;
	font-size: 0.9em;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid #f1e7e7;
	transition: background 0.12s ease, color 0.12s ease;
}
.etp-user-dropdown a:last-child {
	border-bottom: 0;
}
.etp-user-dropdown a:hover,
.etp-user-dropdown a:focus {
	background: #f6efe3;
	color: #8f2626;
}

/* On narrow screens drop the position line and tighten the brand tracking
   so the name and centered title don't collide. */
@media only screen and (max-width: 600px) {
	.etp-title-bar-link { letter-spacing: 0.22em; text-indent: 0.22em; }
	.etp-user-position { display: none; }
	.etp-user-name { font-size: 0.72em; }
}

/* --- Tall page-title banner ------------------------------------------- */
.etp-page-banner {
	width: 100%;
	background: linear-gradient(135deg, #a83535 0%, #8f2626 55%, #741d1d 100%);
	text-align: center;
	padding: 1.35em 1em;
	border-bottom: 3px solid #b79c61;
}
.etp-page-banner-title {
	margin: 0;
	color: #ffffff;
	font-family: 'Anton', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 2em;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.15;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
}
@media only screen and (min-width: 768px) {
	.etp-title-bar { padding: 0.65em 1em; }
	.etp-title-bar-link { font-size: 0.85em; }
	.etp-page-banner { padding: 1.9em 1em; }
	.etp-page-banner-title { font-size: 3em; }
}

/* ==========================================================================
   My Profile page (markup emitted by profile/etp_profile.php)
   ========================================================================== */
.etp-profile-wrap {
	max-width: 52em;
	margin: 0 auto 3em auto;
	padding: 0 1.25em;
}
.etp-profile-notice {
	margin: 0 0 1.25em auto;
	padding: 0.9em 1.2em;
	border-radius: 8px;
	font-size: 0.95em;
	font-weight: 600;
}
.etp-profile-notice.is-ok {
	background: #e7f4ea;
	color: #276b34;
	border: 1px solid #b7ddc0;
}
.etp-profile-notice.is-error {
	background: #fbeaea;
	color: #9b2626;
	border: 1px solid #edc3c3;
}
.etp-profile-card {
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-radius: 12px;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
	padding: 1.75em 1.9em 2em 1.9em;
}
.etp-profile-heading {
	margin: 0 0 0.15em 0;
	padding-bottom: 0.5em;
	border-bottom: 2px solid #f0e6e6;
	color: #552222;
	font-size: 1.1em;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.etp-profile-heading:not(:first-of-type) {
	margin-top: 2em;
}
.etp-profile-subnote {
	margin: 0.5em 0 0 0;
	color: #8a7f7f;
	font-size: 0.85em;
}
.etp-profile-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.1em 1.5em;
	margin-top: 1.25em;
}
@media only screen and (min-width: 620px) {
	.etp-profile-grid { grid-template-columns: 1fr 1fr; }
	.etp-field-wide { grid-column: 1 / -1; }
}
.etp-field {
	display: block;
}
.etp-field-label {
	display: block;
	margin-bottom: 0.35em;
	color: #6d6363;
	font-size: 0.78em;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.etp-field-input {
	width: 100%;
	padding: 0.6em 0.75em;
	border: 1px solid #d8cccc;
	border-radius: 7px;
	background: #fdfbfb;
	color: #3a3232;
	font-size: 1em;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.etp-field-input:focus {
	outline: none;
	border-color: #9b3333;
	box-shadow: 0 0 0 3px rgba(155, 51, 51, 0.14);
	background: #ffffff;
}
.etp-field-static {
	padding: 0.6em 0.75em;
	border: 1px solid #eee4e4;
	border-radius: 7px;
	background: #f6f1f1;
	color: #6a6060;
	font-size: 1em;
}
.etp-field-check {
	display: flex;
	align-items: center;
	gap: 0.55em;
	grid-column: 1 / -1;
	color: #4a4242;
	font-size: 0.95em;
}
.etp-field-check input {
	width: 1.05em;
	height: 1.05em;
	accent-color: #9b3333;
}
.etp-profile-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1em;
	margin-top: 2em;
	padding-top: 1.4em;
	border-top: 1px solid #f0e6e6;
}
.etp-profile-cancel {
	color: #8a7f7f;
	font-weight: 600;
	text-decoration: none;
}
.etp-profile-cancel:hover { color: #552222; }
.etp-profile-save {
	padding: 0.7em 1.7em;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #a83535 0%, #8f2626 100%);
	color: #ffffff;
	font-size: 0.98em;
	font-weight: 700;
	letter-spacing: 0.03em;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(155, 51, 51, 0.28);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.etp-profile-save:hover {
	transform: translateY(-1px);
	box-shadow: 0 5px 14px rgba(155, 51, 51, 0.34);
}
.etp-profile-pwnote {
	margin: 1.5em 0 0 0;
	color: #8a7f7f;
	font-size: 0.85em;
	text-align: center;
}

/* ==========================================================================
   Company Email page (markup emitted by eltoroportal_tools/etp_email.php)
   ========================================================================== */
.etp-email {
	max-width: 640px;
	margin: 0 auto 3em auto;
	padding: 0 1.25em;
}

/* Top: clean account listing — address on the left, webmail link on the right */
.etp-email-account {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding: 1.1em 1.3em;
	margin-bottom: 1.75em;
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-radius: 12px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.etp-email-account-main {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.etp-email-account-label {
	margin-bottom: 0.25em;
	color: #8a7f7f;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.etp-email-account-address {
	color: #2f2a2a;
	font-size: 1.15em;
	font-weight: 600;
	word-break: break-all;
}
.etp-email-account-address.is-empty {
	color: #a99f9f;
	font-weight: 500;
	font-style: italic;
}
.etp-email-account-link {
	flex: 0 0 auto;
	white-space: nowrap;
	color: #9b3333;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.14s ease;
}
.etp-email-account-link:hover,
.etp-email-account-link:focus {
	color: #7d1f1f;
	text-decoration: none;
}

/* Below: rounded info box (IMAP explanation + settings + provider guides) */
.etp-email-box {
	padding: 1.5em 1.5em 1.4em 1.5em;
	background: #faf6f6;
	border: 1px solid #ebdede;
	border-radius: 16px;
}
.etp-email-box-title {
	margin: 0 0 0.5em 0;
	color: #552222;
	font-size: 1.2em;
	font-weight: 700;
}
.etp-email-box-text {
	margin: 0 0 1.2em 0;
	color: #6a6060;
	font-size: 0.95em;
	line-height: 1.55;
}
.etp-email-settings {
	display: grid;
	gap: 0.6em;
	margin: 0 0 1.35em 0;
}
.etp-email-settings > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding: 0.6em 0.9em;
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-radius: 8px;
}
.etp-email-settings dt {
	color: #8a7f7f;
	font-size: 0.78em;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.etp-email-settings dd {
	margin: 0;
	color: #3a3232;
	font-size: 0.92em;
	text-align: right;
}
.etp-email-links {
	display: flex;
	flex-direction: column;
	gap: 0.7em;
}
.etp-email-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding: 0.9em 1.15em;
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-radius: 10px;
	color: #3a3232;
	text-decoration: none;
	transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}
.etp-email-item:hover,
.etp-email-item:focus {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(155, 51, 51, 0.12);
	border-color: #e0c9c9;
	color: #3a3232;
	text-decoration: none;
}
.etp-email-item-title {
	font-size: 1em;
	font-weight: 600;
	color: #2f2a2a;
}
.etp-email-item-arrow {
	flex: 0 0 auto;
	color: #b79c61;
	font-size: 1.15em;
	transition: transform 0.14s ease, color 0.14s ease;
}
.etp-email-item:hover .etp-email-item-arrow,
.etp-email-item:focus .etp-email-item-arrow {
	transform: translateX(3px);
	color: #9b3333;
}

@media only screen and (max-width: 520px) {
	.etp-email-account { flex-direction: column; align-items: flex-start; }
	.etp-email-settings > div { flex-direction: column; align-items: flex-start; gap: 0.2em; }
	.etp-email-settings dd { text-align: left; }
}

/* Employee Resources: reuses the Manager Documents card styles (.etp-docs-*);
   only the right-aligned "Add New Resource" wrapper is specific to it. */
.etp-resources-admin {
	margin-bottom: 1.25em;
	text-align: right;
}

/* ==========================================================================
   Secret Shopper page (markup emitted by eltoroportal_tools/etp_secretshopper.php)
   Informational: store ranking + chronological evaluations, subtle score color.
   ========================================================================== */
.etp-ss {
	max-width: 820px;
	margin: 0 auto 3em auto;
	padding: 0 1.25em;
}
.etp-ss-adminbar {
	margin-bottom: 1.25em;
	text-align: right;
}
.etp-ss-btn {
	display: inline-block;
	padding: 0.55em 1.1em;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #a83535 0%, #7d1f1f 100%);
	color: #ffffff;
	font-size: 0.9em;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: box-shadow 0.14s ease;
}
.etp-ss-btn:hover,
.etp-ss-btn:focus {
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(155, 51, 51, 0.3);
}

.etp-ss-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	margin-bottom: 1.75em;
}
.etp-ss-control {
	display: flex;
	flex-direction: column;
	gap: 0.35em;
	flex: 1 1 200px;
}
.etp-ss-control label {
	color: #8a7f7f;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.etp-ss-control select {
	width: 100%;
	padding: 0.55em 0.7em;
	border: 1px solid #d8cccc;
	border-radius: 8px;
	background: #ffffff;
	color: #3a3232;
	font-size: 0.95em;
}
.etp-ss-control select:focus {
	outline: none;
	border-color: #9b3333;
	box-shadow: 0 0 0 3px rgba(155, 51, 51, 0.12);
}

.etp-ss-section { margin-bottom: 2em; }
.etp-ss-heading {
	margin: 0 0 0.9em 0;
	padding-bottom: 0.5em;
	border-bottom: 2px solid #f0e6e6;
	color: #552222;
	font-size: 0.85em;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.etp-ss-empty {
	padding: 1.5em 1em;
	text-align: center;
	color: #8a7f7f;
}

/* Stat card (summary / individual average) */
.etp-ss-stat {
	padding: 1.4em 1em;
	text-align: center;
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-left: 5px solid #cccccc;
	border-radius: 12px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.etp-ss-stat-num { font-size: 2.6em; font-weight: 800; line-height: 1; }
.etp-ss-stat-label {
	margin-top: 0.4em;
	color: #8a7f7f;
	font-size: 0.85em;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Ranking */
.etp-ss-rank { display: flex; flex-direction: column; gap: 0.5em; }
.etp-ss-rank-row {
	display: flex;
	align-items: center;
	gap: 0.9em;
	padding: 0.7em 0.9em;
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-radius: 10px;
	color: #3a3232;
	text-decoration: none;
	transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
.etp-ss-rank-row:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	border-color: #e0c9c9;
	color: #3a3232;
	text-decoration: none;
}
.etp-ss-rank-row.is-top { background: #fffdf5; border-color: #e6cf8f; }
.etp-ss-rank-num {
	flex: 0 0 auto;
	width: 2.2em;
	color: #b79c61;
	font-size: 0.95em;
	font-weight: 800;
}
.etp-ss-rank-row.is-top .etp-ss-rank-num { color: #c79a2e; }
.etp-ss-rank-name {
	flex: 1 1 auto;
	min-width: 0;
	color: #443;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.etp-ss-rank-bar {
	flex: 0 0 90px;
	height: 8px;
	background: #f0eaea;
	border-radius: 99px;
	overflow: hidden;
}
.etp-ss-rank-bar-fill { display: block; height: 100%; border-radius: 99px; }

/* Score pill (shared by ranking + evaluations) */
.etp-ss-pill {
	flex: 0 0 auto;
	display: inline-block;
	padding: 0.25em 0.7em;
	border-radius: 999px;
	font-size: 0.85em;
	font-weight: 700;
	white-space: nowrap;
}

/* Evaluations list */
.etp-ss-evals { display: flex; flex-direction: column; gap: 0.4em; }
.etp-ss-eval {
	display: flex;
	align-items: center;
	gap: 0.9em;
	padding: 0.65em 0.9em;
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-radius: 9px;
}
.etp-ss-eval-date { flex: 0 0 auto; width: 6.5em; color: #6a6060; font-size: 0.85em; }
.etp-ss-eval-loc {
	flex: 1 1 auto;
	min-width: 0;
	color: #552222;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
a.etp-ss-eval-loc:hover { color: #9b3333; }
.etp-ss-eval-dl { flex: 0 0 auto; color: #9b3333; font-size: 0.85em; font-weight: 600; text-decoration: none; }
.etp-ss-eval-dl:hover { text-decoration: underline; }
.etp-ss-del { color: #9b2626; }

/* Edit form (corporate) */
.etp-ss-editform {
	display: flex;
	flex-direction: column;
	gap: 0.9em;
	padding: 1.25em;
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-radius: 12px;
}
.etp-ss-editform label {
	display: flex;
	flex-direction: column;
	gap: 0.3em;
	color: #6d6363;
	font-size: 0.85em;
	font-weight: 600;
}
.etp-ss-editform input,
.etp-ss-editform select {
	padding: 0.55em 0.7em;
	border: 1px solid #d8cccc;
	border-radius: 8px;
	background: #fdfbfb;
	font-size: 0.95em;
}
.etp-ss-editform .etp-ss-btn { align-self: flex-start; }

@media only screen and (max-width: 520px) {
	.etp-ss-rank-bar { display: none; }
	.etp-ss-eval-date { width: 5em; font-size: 0.78em; }
}

/* ==========================================================================
   Locations page (markup emitted by eltoroportal_tools/etp_locations.php)
   A responsive grid of store cards: photo + name/number + key info.
   ========================================================================== */
.etp-loc {
	max-width: 1000px;
	margin: 0 auto 3em auto;
	padding: 0 1.25em;
}
.etp-loc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5em;
}
.etp-loc-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
	transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.etp-loc-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.etp-loc-photo {
	width: 100%;
	aspect-ratio: 16 / 9;
	min-height: 150px;                 /* fallback where aspect-ratio is unsupported */
	background-color: #ecebe9;
	background-size: cover;
	background-position: center;
}
.etp-loc-photo-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #8f2626 0%, #552222 100%);
}
.etp-loc-photo-empty span {
	padding: 0 1em;
	color: rgba(255, 255, 255, 0.85);
	font-family: 'Anton', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1.3em;
	letter-spacing: 0.08em;
	text-align: center;
}
.etp-loc-body {
	padding: 1.15em 1.25em 1.3em 1.25em;
}
.etp-loc-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.6em;
}
.etp-loc-name {
	margin: 0;
	color: #552222;
	font-size: 1.25em;
	font-weight: 700;
	line-height: 1.2;
}
.etp-loc-num {
	flex: 0 0 auto;
	color: #b79c61;
	font-size: 0.9em;
	font-weight: 800;
}
.etp-loc-address {
	display: inline-block;
	margin-top: 0.4em;
	color: #6a6060;
	font-size: 0.9em;
	line-height: 1.4;
	text-decoration: none;
	border-bottom: 1px dashed transparent;
}
a.etp-loc-address:hover,
a.etp-loc-address:focus {
	color: #9b3333;
	border-bottom-color: #e0c9c9;
}
.etp-loc-facts {
	margin: 1em 0 0 0;
}
.etp-loc-facts > div {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	padding: 0.5em 0;
	border-top: 1px solid #f2ecec;
}
.etp-loc-facts > div:first-child {
	border-top: 0;
}
.etp-loc-facts dt {
	color: #8a7f7f;
	font-size: 0.8em;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.etp-loc-facts dd {
	margin: 0;
	color: #3a3232;
	font-size: 0.92em;
	text-align: right;
}
.etp-loc-facts dd a {
	color: #9b3333;
	text-decoration: none;
}
.etp-loc-facts dd a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Call List page (markup emitted by eltoroportal_tools/etp_call_list.php)
   A concise, modern phone-book: sectioned lists, name on the left, contact
   methods on the right.
   ========================================================================== */
.etp-cl {
	max-width: 860px;
	margin: 0 auto 3em auto;
	padding: 0 1.25em;
}
.etp-cl-section {
	margin-bottom: 2.25em;
	border-radius: 12px;
	overflow: hidden;                     /* clip header + list into one card */
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.etp-cl-heading {
	display: flex;
	align-items: center;
	gap: 0.55em;
	margin: 0;
	padding: 0.75em 1.1em;
	background: linear-gradient(135deg, #8f2626 0%, #552222 100%);
	color: #ffffff;
	font-size: 0.9em;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.etp-cl-heading::before {
	content: "";
	flex: 0 0 auto;
	width: 0.7em;
	height: 0.7em;
	border-radius: 50%;
	background: #e6cf8f;                   /* gold marker */
}
.etp-cl-list {
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-top: 0;
}
.etp-cl-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1.2em;
	padding: 0.7em 1.1em;
	border-top: 1px solid #f4eeee;
}
.etp-cl-row:first-child { border-top: 0; }
.etp-cl-row:hover { background: #fbf8f8; }
.etp-cl-row.is-gm { background: #fffdf5; }
.etp-cl-row.is-gm:hover { background: #fdfaef; }
.etp-cl-main { flex: 1 1 auto; min-width: 0; }
.etp-cl-name {
	display: block;
	color: #2f2a2a;
	font-size: 1em;
	font-weight: 700;
}
.etp-cl-tag {
	margin-left: 0.4em;
	color: #8a7f7f;
	font-size: 0.78em;
	font-weight: 600;
}
.etp-cl-role {
	display: block;
	margin-top: 0.1em;
	color: #8a7f7f;
	font-size: 0.82em;
}
.etp-cl-gm {
	display: inline-block;
	margin-left: 0.35em;
	padding: 0 0.4em;
	border-radius: 4px;
	background: #efe0b8;
	color: #8a6a1f;
	font-size: 0.72em;
	font-weight: 800;
	letter-spacing: 0.05em;
}
.etp-cl-contacts {
	flex: 0 1 auto;
	display: flex;
	flex-direction: column;
	gap: 0.15em;
	text-align: right;
}
.etp-cl-c {
	white-space: nowrap;
	color: #3a3232;
	font-size: 0.85em;
}
.etp-cl-lbl {
	color: #a99f9f;
	font-size: 0.82em;
}
.etp-cl-c a {
	color: #9b3333;
	text-decoration: none;
}
.etp-cl-c a:hover { text-decoration: underline; }

@media only screen and (max-width: 560px) {
	.etp-cl-row { flex-direction: column; gap: 0.4em; }
	.etp-cl-contacts { justify-content: flex-start; text-align: left; flex-direction: column; gap: 0.15em; }
}

/* ==========================================================================
   Manager Documents page (markup emitted by documents/etp_documents_display.php)
   Per-category cards (colored header + clean document list), like the call list.
   ========================================================================== */
.etp-docs {
	max-width: 860px;
	margin: 0 auto 3em auto;
	padding: 0 1.25em;
}
.etp-docs-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1em;
	margin-bottom: 1.75em;
}
.etp-docs-locform {
	display: flex;
	flex-direction: column;
	gap: 0.35em;
	flex: 1 1 220px;
}
.etp-docs-locform label {
	color: #8a7f7f;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.etp-docs-locform select {
	width: 100%;
	padding: 0.55em 0.7em;
	border: 1px solid #d8cccc;
	border-radius: 8px;
	background: #ffffff;
	color: #3a3232;
	font-size: 0.95em;
}
.etp-docs-locform select:focus {
	outline: none;
	border-color: #9b3333;
	box-shadow: 0 0 0 3px rgba(155, 51, 51, 0.12);
}
.etp-docs-add {
	display: inline-block;
	padding: 0.55em 1.1em;
	border-radius: 8px;
	background: linear-gradient(135deg, #a83535 0%, #7d1f1f 100%);
	color: #ffffff;
	font-size: 0.9em;
	font-weight: 700;
	text-decoration: none;
	transition: box-shadow 0.14s ease;
}
.etp-docs-add:hover,
.etp-docs-add:focus {
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(155, 51, 51, 0.3);
	text-decoration: none;
}
.etp-docs-empty {
	padding: 2.5em 1em;
	text-align: center;
	color: #8a7f7f;
}

/* Category card */
.etp-docs-cat {
	margin-bottom: 2.25em;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.etp-docs-cat-head {
	display: flex;
	align-items: center;
	gap: 0.55em;
	margin: 0;
	padding: 0.75em 1.1em;
	background: linear-gradient(135deg, #8f2626 0%, #552222 100%);
	color: #ffffff;
	font-size: 0.9em;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.etp-docs-cat-head::before {
	content: "";
	flex: 0 0 auto;
	width: 0.7em;
	height: 0.7em;
	border-radius: 50%;
	background: #e6cf8f;
}
.etp-docs-cat-name { flex: 1 1 auto; }
.etp-docs-cat-edit {
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.82em;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	text-decoration: underline;
}
.etp-docs-cat-edit:hover { color: #ffffff; }

.etp-docs-list {
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-top: 0;
}
.etp-docs-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1.2em;
	padding: 0.75em 1.1em;
	border-top: 1px solid #f4eeee;
}
.etp-docs-row:first-child { border-top: 0; }
.etp-docs-row:hover { background: #fbf8f8; }
.etp-docs-row.is-empty { background: #faf6f6; }
.etp-docs-main { flex: 1 1 auto; min-width: 0; }
.etp-docs-name {
	color: #552222;
	font-size: 1em;
	font-weight: 700;
	text-decoration: none;
}
a.etp-docs-name:hover,
a.etp-docs-name:focus { color: #9b3333; text-decoration: none; }
.etp-docs-desc {
	display: block;
	margin-top: 0.15em;
	color: #8a7f7f;
	font-size: 0.85em;
	line-height: 1.4;
}
.etp-docs-tags {
	flex: 0 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45em;
}
.etp-docs-tag {
	display: inline-block;
	padding: 0.2em 0.65em;
	border: 1px solid #e7dcc9;
	border-radius: 999px;
	background: #f3ece4;
	color: #7d5a2e;
	font-size: 0.76em;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.etp-docs-tag:hover,
.etp-docs-tag:focus { background: #ece0cf; color: #5f4420; text-decoration: none; }
.etp-docs-tag-edit { background: #f0eaea; border-color: #e3d6d6; color: #8a6a6a; }
.etp-docs-tag-warn { background: #fbeaea; border-color: #edc3c3; color: #9b2626; }

@media only screen and (max-width: 560px) {
	.etp-docs-row { flex-direction: column; gap: 0.4em; }
	.etp-docs-tags { justify-content: flex-start; }
}

/* ==========================================================================
   Meeting Archives (markup emitted by meetingarchives/etp_meetingarchives_display.php)
   A list of past meetings; each expands to reveal its files/notes by subsection.
   ========================================================================== */
.etp-mtg {
	max-width: 820px;
	margin: 0 auto 3em auto;
	padding: 0 1.25em;
}
.etp-mtg-admin {
	margin-bottom: 1.25em;
	text-align: right;
}
.etp-mtg-list {
	display: flex;
	flex-direction: column;
	gap: 0.75em;
}
.etp-mtg-item {
	background: #ffffff;
	border: 1px solid #ece2e2;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.etp-mtg-head {
	display: flex;
	align-items: center;
	gap: 0.8em;
	padding: 0.85em 1.1em;
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.etp-mtg-head::-webkit-details-marker { display: none; }
.etp-mtg-head:hover { background: #fbf8f8; }
.etp-mtg-type {
	flex: 1 1 auto;
	min-width: 0;
	color: #552222;
	font-size: 1.02em;
	font-weight: 700;
}
.etp-mtg-date {
	flex: 0 0 auto;
	color: #8a7f7f;
	font-size: 0.85em;
}
.etp-mtg-count {
	flex: 0 0 auto;
	padding: 0.15em 0.6em;
	border-radius: 999px;
	background: #f3ece4;
	color: #7d5a2e;
	font-size: 0.72em;
	font-weight: 700;
}
.etp-mtg-chevron {
	flex: 0 0 auto;
	color: #b79c61;
	font-size: 0.9em;
	transition: transform 0.18s ease;
}
.etp-mtg-item[open] .etp-mtg-chevron { transform: rotate(180deg); }
.etp-mtg-item[open] .etp-mtg-head {
	background: #fffdf9;
	border-bottom: 1px solid #f0e6e6;
}
.etp-mtg-body { padding: 0.4em 1.1em 1em 1.1em; }
.etp-mtg-sub { margin-top: 0.9em; }
.etp-mtg-sub:first-child { margin-top: 0.4em; }
.etp-mtg-sub-title {
	margin-bottom: 0.35em;
	color: #8a7f7f;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.etp-mtg-file {
	display: flex;
	align-items: baseline;
	gap: 0.6em;
}
.etp-mtg-file-link {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1em;
	padding: 0.5em 0.6em;
	border-radius: 8px;
	text-decoration: none;
}
a.etp-mtg-file-link:hover { background: #f7f2f2; }
.etp-mtg-file-link.is-note { cursor: default; }
.etp-mtg-file-label {
	flex: 1 1 auto;
	min-width: 0;
	color: #9b3333;
	font-size: 0.92em;
	font-weight: 600;
}
.etp-mtg-file-link.is-note .etp-mtg-file-label { color: #4a4242; font-weight: 500; }
.etp-mtg-file-meta {
	flex: 0 0 auto;
	max-width: 45%;
	color: #a99f9f;
	font-size: 0.8em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.etp-mtg-del {
	flex: 0 0 auto;
	color: #9b2626;
	font-size: 0.78em;
	text-decoration: none;
}
.etp-mtg-del:hover { text-decoration: underline; }

@media only screen and (max-width: 560px) {
	.etp-mtg-head { flex-wrap: wrap; gap: 0.4em 0.6em; }
	.etp-mtg-type { flex: 1 0 100%; }
	.etp-mtg-file-link { flex-direction: column; gap: 0.15em; }
	.etp-mtg-file-meta { max-width: 100%; text-align: left; }
}

/* ==========================================================================
   Pending-approvals alert (markup emitted by etp_get_pending_approvals_notice)
   Shown at the top of the main menu and the Users page when registrations
   await approval.
   ========================================================================== */
.etp-approvals-alert {
	display: flex;
	align-items: center;
	gap: 0.85em;
	max-width: 768px;
	margin: 0 auto 1.25em auto;
	padding: 0.85em 1.15em;
	background: #eaf5ec;
	border: 1px solid #bfe0c6;
	border-radius: 12px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
	color: #276b34;
	text-decoration: none;
	transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.etp-approvals-alert:hover,
.etp-approvals-alert:focus {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(39, 107, 52, 0.16);
	color: #276b34;
	text-decoration: none;
}
.etp-approvals-alert-badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.9em;
	height: 1.9em;
	padding: 0 0.4em;
	border-radius: 999px;
	background: #2f7d32;
	color: #ffffff;
	font-size: 0.95em;
	font-weight: 800;
}
.etp-approvals-alert-text {
	flex: 1 1 auto;
	font-size: 0.95em;
	font-weight: 600;
}
.etp-approvals-alert-cta {
	flex: 0 0 auto;
	color: #2f7d32;
	font-size: 0.88em;
	font-weight: 700;
	white-space: nowrap;
}
@media only screen and (max-width: 520px) {
	.etp-approvals-alert-cta { display: none; }
}

/* Content wrappers used by the default page template */
#content-wrap.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 30px 0;
}
#primary.content-area { width: 100%; }
#content.site-content { width: 100%; }
.clr::after { content: ""; display: table; clear: both; }

/* Baseline form controls */
input, select, textarea, button {
	font-family: inherit;
	font-size: 100%;
}
input[type="text"], input[type="password"], input[type="email"],
input[type="search"], input[type="number"], textarea, select {
	padding: 8px 10px;
	border: 1px solid #ccc;
	background-color: #fff;
	color: #333;
}
button, input[type="submit"], input[type="button"], .button {
	display: inline-block;
	padding: 10px 18px;
	border: 0;
	background-color: #13aff0;
	color: #fff;
	cursor: pointer;
	line-height: 1.4;
}
button:hover, input[type="submit"]:hover, .button:hover { background-color: #0d8ecf; }

/* --------------------------------------------------------------------------
   2. Portal styles
   -------------------------------------------------------------------------- */

@media print { /* Do not add URL next to links when printing */
	a[href]:after {
		content: none !important;
	}
}

body h1 {
	text-transform: uppercase;
}

input {
	min-height: 0px;
	min-width: 0px;
}

input[type="text"].textbox {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	white-space: nowrap;
	overflow: hidden;
}

input[type="text"].textbox, textarea {
	color: #000000;
	background-color: #eeeeee;
	white-space: nowrap;
	overflow: hidden;
}

.submit-plate {
	width:80% !important;
	max-width:80% !important;
	min-width:25em !important;
	background-color: #9b3333 !important;
	color:white !important;
}

.portal_kitchen_recipe {
	display: block;
	float:left;
	text-align: center;
	background-color:#ffffff;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #444444;
	color: black;
}

.portal_container {
	margin-top: 0em;
	display: block;
	padding: 0px;
	float:left;
	width:100%;
	background-color:white;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: rgb(195, 195, 195);
	opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: rgb(195, 195, 195);
}

::-ms-input-placeholder { /* Microsoft Edge */
	color: rgb(195, 195, 195);
}

.portal_menu_button_square {
	float: left;
	margin: 1em 0em 1em 1em;
	padding: 0px;
	width: 100px;
	height: 100px;
	display: block;
	line-height: 2ex;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.portal_menu_button_square:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.26);
}

.portal_menu_button_text {
	margin-top: 70px;
	font-size: small;
	text-align: center;
	display: block;
	line-height: 2ex;
	margin: 70% 0.2em 0.2em 0.2em;
	color: #ffffff;
}

.portal_kitchen_button {
	float: left;
	margin: 1em 0em 1em 1em;
	padding: 0px;
	width: 100px;
	height: 160px;
	display: block;
	line-height: 2ex;
}

.portal_kitchen_button_image {
	float: left;
	margin: 0 0 0 0;
	padding: 0px;
	width: 100px;
	height: 100px;
	display: block;
}

.portal_kitchen_button_text {
	float: left;
	font-size: small;
	text-align: center;
	width: 100px;
	height: 60px;
	display: block;
	margin: 0 0 0 0;
	padding: .5em 0 .5em 0;
	color: #ffffff;
	line-height: 2.3ex;
	text-overflow: hidden;
	white-space: normal;
}

.portal_kitchen_button_text::after {
	background: inherit;
	bottom: 0;
	content: "...";
	margin-right: 1.0rem;
	position: absolute;
	right: 0;
	text-align: right;
	width: 1rem;
}

.portal_section_body {
	margin: 0px;
	padding: 0px;
	display: block;
	float:left;
	width:100%;
	height:auto;
	border-radius: 0 0 14px 14px;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}
@media only screen and (min-width: 768px) {
	/* For desktop: */
	.portal_section_body {
		display: inline-block;
		float:none;
		margin: 0px auto 1em auto;
		width: 768px;
	}
}

.portal_subsection_head {
	margin: 0px;
	padding: 0px;
	display: block;
	float:left;
	width:100%;
	background-color: #444444;
	color: white;
}

.portal_subsection {
	margin:0em;
	padding: 0px;
	display: block;
	float:left;
	width:100%;
	background-color: #bbbbbb;
	color: black;
}

.portal_subsection_content {
	text-align:left;
	color:#808080;
	width:100%;
}

.portal_subsection_button {
	text-align:center;
	color:#808080;
	background-color: #bbbbbb;
	width:100%;
}

.portal_section_head {
	margin:0em;
	padding: 0px;
	display: block;
	float:left;
	width:100%;
	border-radius: 14px 14px 0 0;
}
@media only screen and (min-width: 768px) {
	/* For desktop: */
	.portal_section_head {
		display: inline-block;
		float:none;
		margin: 0px auto 0px auto;
		width: 768px;
	}
}

.access_level_banner {
	width: 100%;
	text-align:center;
	height: 3em;
	float:left;
}

.portal_topbar_info_box {
	margin: 1ex 0 0 0;
	padding: 0px;
	display: block;
	width: 100%;
	text-align: center;
	min-height: 4ex;
	line-height: 3ex;
}

.portal_section_text {
	display: block;
	padding: 0px;
	font-size: normal;
	text-align: center;
	color: #ffffff;
	margin: 0.4em 0em 0.4em 0.5em;
}

.portal_topbar_title {
	display: inline;
	padding: 0px;
	font-size: 1em;
	text-align: left;
	color: #ffffff;
}

.portal_topbar_info {
	font-size: 0.8em;
	text-align: center;
	color: #ffffff;
	padding: 0px;
	margin: 0px;
	height: 1.5em;
	width: 100%;
}

.portal_topbar {
	background-color:#552222;
	margin-top: 0em;
	padding: 0px;
	display: block;
	float:left;
	width:100%;
	text-align: center;
}
@media only screen and (min-width: 768px) {
	/* For desktop: */
	.portal_topbar {
		margin: 0px 0px 1em 0px;
	}
}

.ticket-edit {
	width:100%;
}
@media only screen and (min-width: 768px) {
	/* For desktop: */
	.ticket-edit {
		width:40em;
	}
}

.user-info-container {
	display: block;
	float:left;
	width: 100%;
}

.message-container {
	margin-bottom: 2em;
	display: block;
	float:left;
	color: white;
	background-color: #39859c;
	width: 100%;
}

.menu_container {
	text-align: center;
	width:100%;
}

.page-header-title {
	font-family: 'Quicksand', sans-serif;
}

/* For mobile phones: */
[class*="topcol-"] {
	width: 100%;
	display: block;
	float:left;
}

@media only screen and (min-width: 768px) {
	/* For desktop: */
	.topcol-1 {width: 50%;}
	.topcol-2 {width: 50%;}
}

/* -------------------- Select Box Styles: bavotasan.com Method (with special adaptations by ericrasch.com) */
/* -------------------- Source: http://bavotasan.com/2011/style-select-box-using-only-css/ */
.portal-select {
	height: 2.5em;
	/* overflow: hidden; */
	width: 15%;
	margin: 0px;
	padding: 0 0 0 5px; /* If you add too much padding here, the options won't show in IE */
}

.portal-select select {
	background: transparent;
	border: none;
	font-size: .9em;
	margin: 0px;
	padding: 0px; /* If you add too much padding here, the options won't show in IE */
}

.semi-square {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.square {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

/* -------------------- Colors: Background */
.slate   { background-color: rgb(204, 204, 204); }
.green   { background-color: #779126; }
.blue    { background-color: #3b8ec2; }
.yellow  { background-color: #eec111; }
.black   { background-color: #000; }

/* -------------------- Colors: Text */
.green select   { color: #fff; }
.blue select    { color: rgb(0, 0, 0); }
.yellow select  { color: #000; }
.black select   { color: #fff; }

a.anchor {
	display: block;
	position: relative;
	top: -5ex;
	visibility: hidden;
}

.fixed-nav-bar {
	text-align:center;
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 9999;
	width: 20%;
	height: 100%;
}

.fixed-nav-bar-btn {
	text-align:center;
	padding-top:1.4ex;
	line-height: 2ex;
	color: white;
	font-weight: bolder;
	font-size:large;
	background-color: #87362a; /* For browsers that do not support gradients */
	background-image: linear-gradient(#ad5649, #7e2213);
	border-color: #5d1d13;
	border-width: 4px;
	border-style: solid;
	margin-bottom:1%;
}

.fixed-nav-bar-btn-sel {
	text-align:center;
	padding-top:1.4ex;
	line-height: 2ex;
	color: white;
	font-weight: bolder;
	font-size:large;
	background-color: #e71d00; /* For browsers that do not support gradients */
	background-image: linear-gradient(#ff3415, #a81600);
	border-color: #7f1100;
	border-width: 4px;
	border-style: solid;
	margin-bottom:1%;
}

.fixed-nav-bar-btn-sr {
	text-align:center;
	padding-top:1.4ex;
	line-height: 2ex;
	color: white;
	font-weight: bolder;
	font-size:large;
	background-color: #435679; /* For browsers that do not support gradients */
	background-image: linear-gradient(#566c90, #293a58);
	border-color: #1d232f;
	border-width: 4px;
	border-style: solid;
	margin-bottom:1%;
}

.fixed-nav-bar-btn-sr-sel {
	text-align:center;
	padding-top:1.4ex;
	line-height: 2ex;
	Color: black;
	font-weight: bolder;
	font-size:large;
	background-color: #6d92d2; /* For browsers that do not support gradients */
	background-image: linear-gradient(#8eb7f9, #38568b);
	border-color: #232a35;
	border-width: 4px;
	border-style: solid;
	margin-bottom:1%;
}
.fixed-nav-bar-btn-proc {
	text-align:center;
	padding-top:1.4ex;
	line-height: 2ex;
	color: white;
	font-weight: bolder;
	font-size:large;
	background-color: #435679; /* For browsers that do not support gradients */
	background-image: linear-gradient(#518150, #2f4b2e);
	border-color: #1b2b1b;
	border-width: 4px;
	border-style: solid;
	margin-bottom:1%;
}

.fixed-nav-bar-btn-proc-sel {
	text-align:center;
	padding-top:1.4ex;
	line-height: 2ex;
	Color: black;
	font-weight: bolder;
	font-size:large;
	background-color: #6d92d2; /* For browsers that do not support gradients */
	background-image: linear-gradient(#83d282, #497548);
	border-color: #1b2b1b;
	border-width: 4px;
	border-style: solid;
	margin-bottom:1%;
}

.vertical-center {
	margin: 0;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.fixed-nav-bar-btn-arrow {
	text-align:center;
	padding:0%;
	width: 100%;
	height: 9.0%;
	color: white;
	font-weight: bolder;
	font-size:large;
	background-color: #676767; /* For browsers that do not support gradients */
	background-image: linear-gradient(#bdbdbd, #828282);
	border-color: #676767;
	border-width: 4px;
	border-style: solid;
	margin-bottom:1%;
}

.fixed-nav-bar-spacer {
	text-align:center;
	padding-top:1%;
	width: 100%;
	height: 9.5%;
	color: white;
	font-weight: bolder;
	font-size:large;
	margin-bottom:1%;
	line-height: 10ex;
}

.recipe-btn {
	margin-right:1%;
	position:relative;
	display:block;
	float:left;
	text-align:center;
	padding-top:1.5ex;
	padding-left:8px;
	padding-right:8px;
	width: 24%;
	height: 12ex;
	color: white;
	font-weight: bolder;
	font-size:1.2em;
	background-color: #3b5277; /* For browsers that do not support gradients */
	background-image: linear-gradient(#9aa2ab, #57616a);
	border-color: #484f58;
	border-width: 4px;
	border-style: solid;
	margin-bottom:1ex;
	text-align: center;
	line-height:2.2ex;
}

.recipe-btn:hover {
	color: white;
}

.recipe-done-btn {
	padding-top:.6em;
	height:3em;
	width:100%;
	background-color:red;
	color:white;
	text-align:center;
	font-weight:bolder;
	font-size:x-large;
	background-image: linear-gradient(#cd5648, #99190d);
	border-width: 4px;
	border-style: solid;
	border-color:#701910
}

.recipe-done-btn:hover {
	color: white;
}

.results-panel {
	width: 99%;
	overflow: hidden;
	margin-top: 10px;
	padding: 1em;
	color: white;
	background-color: #333c49; /* For browsers that do not support gradients */
	border-color: #262d39;
	border-width: 4px;
	border-style: solid;
}

.grid-container {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 10px;
	padding: 10px;
}

.grid-container > div {
	color:#000;
	padding: 10px;
	font-size: 30px;
	text-align: center;
}

.grid-left {grid-area: 1 / 1;}

.grid-right {grid-area: 1 / 2;}

@media print {
	.recipe-done-btn, .recipe-done-btn *
	{
		display: none !important;
	}
	.portal_kitchen_recipe, .portal_kitchen_recipe *
	{
		color: black !important;
	}
}

.expendable {
	display: none;
}
@media only screen and (min-width: 900px) {
	/* For desktop: */
	.expendable {
		display: block;
	}
}

/* --------------------------------------------------------------------------
   3. Login / registration placeholder forms
   -------------------------------------------------------------------------- */

.etp-auth-wrap {
	max-width: 360px;
	margin: 5em auto;
	padding: 2em;
	text-align: center;
}
.etp-auth-wrap h1 { font-size: 1.6em; }
.etp-auth-wrap label {
	display: block;
	text-align: left;
	margin: 1em 0 0.25em;
	font-weight: 600;
	color: #333;
}
.etp-auth-wrap input[type="text"],
.etp-auth-wrap input[type="password"],
.etp-auth-wrap input[type="email"] {
	width: 100%;
}
.etp-auth-wrap .button { width: 100%; margin-top: 1.5em; }
.etp-auth-wrap .etp-auth-alt { margin-top: 1.5em; font-size: 0.9em; }
