/* ==========================================================================
   Events, venues, registration, calendar, My Account, and Manage pages.
   Uses the same CSS custom properties main.css defines on :root (--sage,
   --clay, --gold, --radius, --font-heading, etc.) — no separate palette
   needed since this is the theme's own stylesheet, not a plugin styling
   markup it doesn't own.
   ========================================================================== */

/* Top-level page container for archive/single/taxonomy views — same
   max-width/padding convention as .wrap.section on the rest of the site. */
.awe-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 48px 24px 96px;
}

/* Category filter bar */
.awe-category-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}
.awe-category-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--white);
	text-decoration: none;
	color: var(--card-ink);
	font-size: 0.875rem;
	font-weight: 600;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.awe-category-pill:hover {
	border-color: var(--sage);
	color: var(--sage-dark);
	background: var(--sage-light);
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.awe-category-pill.is-active {
	background: var(--sage);
	border-color: var(--sage);
	color: var(--white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.awe-category-pill.is-active:hover {
	background: var(--sage-dark);
	border-color: var(--sage-dark);
	color: var(--white);
	transform: translateY(-2px);
}

/* Event grid + card */
.awe-event-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}
.awe-event-card {
	display: flex;
	flex-direction: column;
	border: var(--card-border-width, 1px) var(--card-border-style, solid) var(--card-border-color, var(--border));
	border-radius: var(--card-border-radius, var(--radius));
	overflow: hidden;
	text-decoration: none;
	color: var(--card-ink);
	background: var(--white);
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.awe-event-card:hover { box-shadow: 0 6px 20px rgba(40, 50, 46, 0.08); transform: translateY(-2px); }
.awe-event-card--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.awe-event-card--ad { position: relative; }
.awe-event-card--ad .awe-ad-banner__image { width: 100%; height: 160px; object-fit: cover; display: block; }
.awe-event-card--ad .awe-ad-banner__label { position: absolute; top: 10px; right: 10px; background: rgba(40, 50, 46, 0.75); color: var(--white); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 8px; border-radius: 999px; }
.awe-ad-banner--sidebar { margin-bottom: 20px; }
.awe-event-card__image img { width: 100%; height: 160px; object-fit: cover; display: block; }
.awe-event-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.awe-event-card__date { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sage-dark); font-weight: 600; }
.awe-event-card__title { margin: 2px 0; font-size: 1.1rem; font-family: var(--font-heading); }
.awe-event-card__time,
.awe-event-card__venue { font-size: 0.85rem; color: #5a6660; }
.awe-event-card__price { margin-top: 8px; font-weight: 600; font-size: 0.9rem; color: var(--sage-dark); }
.awe-no-events { grid-column: 1 / -1; text-align: center; color: #7c877f; padding: 32px 0; }
.awe-pagination { margin-top: 40px; display: flex; justify-content: center; gap: 8px; }
.awe-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 36px; height: 36px; padding: 0 8px;
	border-radius: 999px; border: 1px solid var(--border); text-decoration: none; color: var(--ink);
}
.awe-pagination .page-numbers.current { background: var(--sage); border-color: var(--sage); color: var(--white); }

/* Single event */
.awe-single-event .awe-event-body { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 24px; }
@media (max-width: 782px) { .awe-single-event .awe-event-body { grid-template-columns: 1fr; } }
.awe-event-categories { display: flex; gap: 6px; margin-bottom: 10px; }
.awe-event-when { color: var(--sage-dark); font-weight: 600; }
.awe-event-hero img { width: 100%; border-radius: var(--radius); margin: 16px 0; }
.awe-event-description {
	background: var(--sage-light);
	color: var(--card-ink);
	border: var(--description-border-width, 0) var(--description-border-style, none) var(--description-border-color, var(--border));
	border-radius: var(--description-border-radius, var(--radius));
	padding: 24px;
	margin: 16px 0;
}
.awe-event-description > *:first-child { margin-top: 0; }
.awe-event-description > *:last-child { margin-bottom: 0; }
.awe-poster-trigger { position: relative; display: block; cursor: zoom-in; }
.awe-poster-trigger__label { position: absolute; right: 12px; bottom: 28px; background: rgba(40, 50, 46, 0.75); color: var(--white); font-size: 0.8rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.awe-lightbox { display: none; position: fixed; inset: 0; z-index: 10000; align-items: center; justify-content: center; }
.awe-lightbox.is-open { display: flex; }
.awe-lightbox__overlay { position: absolute; inset: 0; background: rgba(20, 24, 22, 0.9); }
.awe-lightbox__image { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.awe-lightbox__close { position: absolute; z-index: 2; top: 20px; right: 24px; background: transparent; border: 0; color: var(--white); font-size: 2rem; line-height: 1; cursor: pointer; }
body.awe-lightbox-open { overflow: hidden; }
.awe-event-meta-box {
	background: var(--white);
	border: var(--details-border-width, 1px) var(--details-border-style, solid) var(--details-border-color, var(--border));
	border-top: 3px solid var(--sage);
	border-radius: var(--details-border-radius, var(--radius));
	padding: 26px 24px 8px;
	margin-bottom: 20px;
}
.awe-meta-row {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin: 0;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
}
.awe-meta-row:last-child { border-bottom: 0; }
.awe-meta-row__label {
	font-family: var(--font-heading);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sage-dark);
}
.awe-meta-row__value { color: var(--card-ink); line-height: 1.5; }
.awe-meta-row__value a { color: var(--sage-dark); }
.awe-meta-row--price .awe-meta-row__value { line-height: 1; }
.awe-price-badge {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--sage-dark);
	background: var(--sage-light);
	padding: 5px 14px;
	border-radius: 999px;
	margin-top: 2px;
}
.awe-meta-row__value--pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.awe-meta-pill {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--clay);
	background: var(--tint-clay);
	padding: 4px 12px;
	border-radius: 999px;
}
.awe-meta-row--ical { border-bottom: 0; padding-top: 18px; padding-bottom: 18px; }
.awe-button--ghost { border-color: var(--sage); color: var(--sage-dark); background: transparent; }
.awe-button--ghost:hover { background: var(--sage-light); color: var(--sage-dark); }
.awe-event-map { margin: 24px 0 8px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.awe-event-map iframe { display: block; width: 100%; height: 320px; border: 0; }
.awe-map-link-row { margin: 0 0 14px; }
.awe-map-link { font-size: 0.85rem; }

/* Venues */
.awe-venue-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.awe-venue-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-decoration: none; color: var(--card-ink); }
.awe-venue-map iframe { border-radius: var(--radius); margin: 16px 0; }

/* Calendar */
.awe-calendar { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.awe-calendar__header { display: flex; align-items: center; justify-content: space-between; padding: 18px; background: var(--sage-light); }
.awe-calendar__title { margin: 0; font-size: 1.1rem; font-family: var(--font-heading); color: var(--sage-dark); }
.awe-calendar__nav { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); cursor: pointer; font-size: 0.95rem; }
.awe-calendar__nav:hover { border-color: var(--sage); }
.awe-calendar__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.7rem; font-weight: 700; color: #7c877f; padding: 10px 0; border-bottom: 1px solid var(--border); }
.awe-calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.awe-calendar__cell { min-height: 90px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 6px; font-size: 0.8rem; }
.awe-calendar__cell.is-today { background: var(--tint-gold); }
.awe-calendar__day-number { font-weight: 600; display: block; margin-bottom: 4px; }
.awe-calendar__event { display: block; background: var(--sage); color: var(--white); border-radius: 4px; padding: 2px 5px; margin-bottom: 2px; text-decoration: none; font-size: 0.72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.awe-calendar__more { font-size: 0.7rem; color: #7c877f; }
.awe-calendar.is-loading { opacity: 0.5; pointer-events: none; }

/* Registration form */
.awe-registration-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.awe-registration-form p { margin: 0 0 14px; }
.awe-registration-form label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 0.9rem; }
.awe-registration-form input,
.awe-registration-form textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-body); }
.awe-registration-form__messages:empty { display: none; }
.awe-registration-form__messages { padding: 14px 18px; border-radius: 8px; margin-bottom: 14px; }
.awe-registration-form__messages.is-success { background: #eaf3ec; color: var(--sage-dark); border: 1px solid #c9dfd0; }
.awe-registration-form__messages.is-error { background: #fbeceb; color: var(--danger); border: 1px solid #f0c9c6; }

/* ==========================================================================
   Front-end portal (My Account + the five Manage pages): sidebar + main,
   both living inside ONE bordered container — no gap between them (a
   border-right divider on the sidebar marks the seam instead), and equal
   height via grid's default stretch (removing the old align-items:start,
   which let the two columns size independently and end at different
   heights). overflow:hidden clips both children to the container's own
   rounded corners instead of each column needing its own border/radius.
   Horizontal centering comes from .awe-container (max-width + margin:0
   auto), which every template applies on the same element — padding is
   explicitly zeroed below since .awe-container's own 48px/24px/96px
   padding would otherwise inset the border from that centered box. */
.awe-portal {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 0;
	padding: 0;
	border: var(--container-border-width, 1px) var(--container-border-style, solid) var(--container-border-color, var(--border));
	border-radius: var(--container-border-radius, var(--radius));
	overflow: hidden;
}
/* page-my-account.php only renders .awe-portal-sidebar for logged-in
   visitors (a logged-out guest has no account info/nav to show there) —
   when it's the only grid child, let it span the full width instead of
   collapsing into the first 300px column, which is what CSS grid
   auto-placement does with a single item and no explicit column. */
.awe-portal-main:only-child { grid-column: 1 / -1; }
@media (max-width: 900px) {
	.awe-portal { grid-template-columns: 1fr; }
}

.awe-portal-sidebar { background: var(--sidebar-bg); color: var(--sidebar-text); padding: 32px; text-align: center; border-right: 1px solid var(--border); }
@media (max-width: 900px) { .awe-portal-sidebar { border-right: none; border-bottom: 1px solid var(--border); } }
.awe-portal-sidebar__avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--sage); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.5rem; margin: 0 auto 12px; }
.awe-portal-sidebar__name { font-weight: 700; margin: 0; }
/* Muted sidebar text (email, stat labels, nav group heading) previously
   hardcoded a fixed grey, so the "Left Column Text" setting
   (page-theme-settings-colors.php) only ever visibly touched the display
   name — everything else in the column ignored it. Deriving from
   --sidebar-text (with opacity for the secondary/muted look, so it still
   reads as de-emphasized regardless of what color is picked) makes the
   setting actually apply to the column it's named for. */
.awe-portal-sidebar__email { color: var(--sidebar-text); opacity: 0.65; font-size: 0.85rem; margin: 2px 0 20px; }
.awe-portal-sidebar__stats { list-style: none; margin: 0 0 24px; padding: 14px 0; display: flex; justify-content: space-around; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.awe-portal-sidebar__stats li { display: flex; flex-direction: column; }
.awe-stat-value { font-family: var(--font-heading); font-size: 1.4rem; color: var(--sage-dark); }
.awe-stat-label { color: var(--sidebar-text); opacity: 0.65; font-size: 0.72rem; }
.awe-portal-sidebar__nav { text-align: left; margin-top: 24px; }
.awe-portal-sidebar__nav h3 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sidebar-text); opacity: 0.65; margin-bottom: 8px; }
.awe-portal-sidebar__nav ul { list-style: none; margin: 0; padding: 0; }
.awe-portal-sidebar__nav li + li { margin-top: 4px; }
.awe-portal-sidebar__nav a { display: block; padding: 7px 8px; margin: 0 -8px; border-radius: 8px; text-decoration: none; color: var(--sidebar-link-color); background: var(--sidebar-link-bg); font-weight: 500; }
.awe-portal-sidebar__nav a:hover,
.awe-portal-sidebar__nav a.is-active { background: var(--sidebar-link-active-bg); color: var(--sidebar-link-active-color); }

.awe-portal-main { background: var(--main-bg); color: var(--main-text); padding: 48px; }
@media (max-width: 900px) { .awe-portal-main { padding: 32px 24px; } }
.awe-portal-main h1 { font-size: calc(clamp(1.6rem, 3vw, 2.1rem) * var(--heading-scale, 100%) / 100%); }
.awe-account-section { margin-bottom: 48px; }
.awe-account-section h2 { font-size: 1.3rem; margin-bottom: 8px; }
.awe-section-intro { color: #5a6660; margin-top: 0; }
/* .awe-section-intro/.awe-field-hint also render outside the portal (e.g.
   front-page.php), where no "column" concept exists and the hardcoded
   grey above is correct — so the "Right Column Text" setting
   (page-theme-settings-colors.php) is applied here scoped to
   .awe-portal-main specifically, the same reasoning as the sidebar block
   above, rather than by changing the unscoped rule everywhere. */
.awe-portal-main .awe-account-welcome,
.awe-portal-main .awe-section-intro,
.awe-portal-main .awe-field-hint { color: var(--main-text); opacity: 0.7; }

.awe-notice { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; }
.awe-notice--success { background: #eaf3ec; color: var(--sage-dark); border: 1px solid #c9dfd0; }
.awe-notice--error { background: #fbeceb; color: var(--danger); border: 1px solid #f0c9c6; }
.awe-notice p { margin: 0; }
.awe-account-dashboard__status:not(:empty) { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; }
.awe-account-dashboard__status.is-success { background: #eaf3ec; color: var(--sage-dark); border: 1px solid #c9dfd0; }
.awe-account-dashboard__status.is-error { background: #fbeceb; color: var(--danger); border: 1px solid #f0c9c6; }

/* Admin overview (on My Account, for anyone who can manage events) */
.awe-admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 20px; }
.awe-admin-stat-card { background: var(--tint-clay); color: var(--card-ink); border: 1px dashed var(--clay); border-radius: var(--radius); padding: 16px 20px; text-decoration: none; display: block; }
.awe-admin-stat-card:nth-child(3n+2) { background: var(--sage-light); border-color: var(--sage); }
.awe-admin-stat-card:nth-child(3n+3) { background: var(--tint-gold); border-color: var(--gold); }
.awe-admin-stat-card__value { display: block; font-family: var(--font-heading); font-size: 1.8rem; color: var(--sage-dark); }
.awe-admin-stat-card__label { display: block; font-size: 0.82rem; color: #5a6660; }
/* Leads the Accounting section with the headline "Total Revenue" figure —
   placed after the nth-child tint cycle above so it wins on equal
   specificity regardless of which position in the grid it falls on. */
.awe-admin-stat-card--highlight { background: var(--sage); border-style: solid; border-color: var(--sage-dark); }
.awe-admin-stat-card--highlight .awe-admin-stat-card__value { color: var(--white); font-size: 2.2rem; }
.awe-admin-stat-card--highlight .awe-admin-stat-card__label { color: rgba(255, 255, 255, 0.85); }

/* Registration cards */
.awe-registration-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.awe-registration-card { background: var(--tint-clay); color: var(--card-ink); border: 1px dashed var(--clay); border-radius: var(--radius); padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.awe-registration-card__info { display: flex; flex-direction: column; gap: 5px; }
.awe-registration-card__actions { display: flex; gap: 8px; }

.awe-history-table { width: 100%; border-collapse: collapse; background: var(--white); color: var(--card-ink); }
.awe-history-table th,
.awe-history-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.awe-history-table th { font-weight: 600; color: var(--sage-dark); background: var(--sage-light); }
.awe-history-table--danger th { color: var(--danger); background: #fbeceb; }

/* Forms shared by auth + Manage pages */
.awe-auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .awe-auth-grid { grid-template-columns: 1fr; } }
.awe-auth-card { background: var(--white); color: var(--card-ink); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.awe-auth-forgot { display: inline-block; margin-top: 14px; font-size: 0.85rem; color: var(--sage-dark); }

.awe-form p { margin: 0 0 14px; }
.awe-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 5px; }
.awe-form input[type="text"],
.awe-form input[type="email"],
.awe-form input[type="password"],
.awe-form input[type="tel"],
.awe-form input[type="url"],
.awe-form input[type="number"],
.awe-form input[type="date"],
.awe-form input[type="time"],
.awe-form input[type="file"],
.awe-form select,
.awe-form textarea { width: 100%; max-width: 420px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-body); background: var(--white); color: var(--card-ink); }
.awe-form input[type="checkbox"] { margin-right: 6px; }
.awe-checkbox-list { display: flex; flex-wrap: wrap; gap: 5px 18px; }
.awe-checkbox-list label { font-weight: 400; display: inline-flex; align-items: center; gap: 5px; }

/* Theme Settings pages (Advertising, Border, SEO, etc.) share
   awe_render_*_settings_fields() with their wp-admin twin, which markup
   up each field group as a WP admin-style <table class="form-table">.
   wp-admin's own admin.css styles that on its side (.awe-admin-wrap in
   assets/css/admin.css) but nothing did on the front end until now — the
   table rendered as an unstyled browser default here, cramped and
   borderless regardless of how tidy the underlying markup is. */
.awe-form h2 { font-size: 1.25rem; margin: 36px 0 6px; padding-top: 28px; border-top: 1px solid var(--border); }
.awe-form h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.awe-form h3 { font-size: 1.05rem; margin: 28px 0 4px; }
.awe-form h3:first-of-type { margin-top: 0; }
.awe-form table.form-table { width: 100%; max-width: 760px; border-collapse: collapse; margin: 0 0 12px; }
.awe-form table.form-table tr { border-bottom: 1px solid var(--border); }
.awe-form table.form-table th { text-align: left; padding: 14px 20px 14px 0; width: 260px; vertical-align: middle; font-weight: 600; font-size: 0.9rem; color: var(--card-ink); }
.awe-form table.form-table td { padding: 10px 0; vertical-align: middle; }
.awe-form .description { display: block; font-size: 0.8rem; color: #7c877f; font-weight: 400; margin: 6px 0 0; }
@media (max-width: 700px) {
	.awe-form table.form-table,
	.awe-form table.form-table tbody,
	.awe-form table.form-table tr,
	.awe-form table.form-table th,
	.awe-form table.form-table td { display: block; width: auto; }
	.awe-form table.form-table th { padding-bottom: 6px; }
	.awe-form table.form-table td { padding-top: 0; padding-bottom: 16px; }
}
.awe-field-hint { display: block; font-size: 0.8rem; color: #7c877f; font-weight: 400; }
.awe-featured-badge { display: inline-block; font-weight: 700; color: var(--gold); background: var(--tint-gold); padding: 3px 10px; border-radius: 999px; font-size: 0.85rem; }
.awe-price-field { display: flex; align-items: center; gap: 6px; max-width: 420px; }
.awe-price-field__prefix { font-weight: 600; color: var(--sage-dark); }

/* Manage list/cards — each section gets its own tint, matching the
   convention used on the homepage's own Manage sections. */
.awe-manage-list { display: grid; gap: 16px; margin-bottom: 28px; }
.awe-manage-card { background: var(--tint-clay); color: var(--card-ink); border: 1px dashed var(--clay); border-radius: var(--radius); padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.awe-manage-events .awe-manage-card { background: var(--tint-clay); border-color: var(--clay); }
.awe-manage-venues .awe-manage-card { background: var(--sage-light); border-color: var(--sage); }
.awe-manage-registrations .awe-manage-card { background: var(--tint-teal); border-color: var(--teal); }
.awe-manage-ads .awe-manage-card { background: var(--tint-gold); border-color: var(--gold); }
.awe-manage-card__info { display: flex; flex-direction: column; gap: 3px; }
.awe-manage-card__meta { font-size: 0.8rem; color: #5a6660; }
.awe-manage-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Events specifically get a responsive card grid rather than a single
   stacked column — keeps the list scannable as event count grows, instead
   of turning into one long vertical scroll. */
.awe-manage-events .awe-manage-list { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); align-items: stretch; }
.awe-manage-events .awe-manage-card { flex-direction: column; align-items: flex-start; }
.awe-manage-events .awe-manage-card__actions { width: 100%; }

#awe-event-form,
#awe-venue-form,
#awe-category-form,
#awe-music-type-form,
.awe-form-card { background: var(--white); color: var(--card-ink); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }

.awe-registrations-filter { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.awe-current-thumbnail img { display: block; border-radius: 8px; margin-bottom: 8px; }

/* Buttons + status pills */
.awe-button { display: inline-block; padding: 12px 24px; border-radius: 15px; text-decoration: none; font-weight: 600; font-family: var(--font-body); border: 2px solid transparent; cursor: pointer; font-size: 0.95rem; transition: transform 0.15s ease, background 0.15s ease; }
.awe-button:hover { transform: translateY(-1px); }
.awe-button--primary { background: var(--sage); color: var(--white); }
.awe-button--primary:hover { background: var(--sage-dark); color: var(--white); }
.awe-button--add { border-color: var(--sage); color: var(--white); background: var(--sage); }
.awe-button--add:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.awe-button--small { padding: 8px 16px; font-size: 0.85rem; }
.awe-button--danger { border-color: var(--danger); color: var(--danger); background: transparent; }
.awe-button--danger:hover { background: var(--tint-rust); }
.awe-button-link-delete { background: none; border: none; color: var(--danger); cursor: pointer; text-decoration: underline; padding: 0; font: inherit; }

.awe-status { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; width: fit-content; }
.awe-status--awe_confirmed { background: var(--sage-light); color: var(--sage-dark); }
.awe-status--awe_waitlisted { background: var(--tint-gold); color: #9a6a1c; }
.awe-status--awe_cancelled { background: #fbeceb; color: var(--danger); }

/* Ad status badges — awe_get_ad_status_badge() (inc/ads-helpers.php). */
.awe-status--ad-live { background: var(--sage-light); color: var(--sage-dark); }
.awe-status--ad-scheduled { background: var(--tint-teal); color: var(--teal); }
.awe-status--ad-awaiting-review { background: var(--tint-gold); color: #9a6a1c; }
.awe-status--ad-awaiting-payment { background: var(--sage-light); color: #5a6660; }
.awe-status--ad-expired { background: var(--sage-light); color: #5a6660; }
.awe-status--ad-disabled { background: var(--tint-clay); color: var(--clay); }
.awe-status--ad-rejected { background: #fbeceb; color: var(--danger); }

/* Event submission status badges — awe_get_event_status_badge() (inc/event-helpers.php). */
.awe-status--pending { background: var(--tint-gold); color: #9a6a1c; }
.awe-status--rejected { background: #fbeceb; color: var(--danger); }
