/*
Theme Name: Expo Training 2026 Child
Template: generatepress
Version: 1.6.0
Author: Expo Training Team
Description: Tema figlio per Expo Training 2026.
*/

/* ==========================================================================
   CSS Variables & Base — Design System v2
   ========================================================================== */

:root {
	--navy: #063b73;
	--navy-dark: #022b57;
	--blue: #0b66c3;
	--contrast:#bad6fa;;
	--yellow: #f4c43d;
	--yellow-soft: #fff3c6;
	--green: #188653;
	--green-soft: #eaf8f1;
	--red: #d64545;
	--red-soft: #fff0f0;
	--text: #142033;
	--muted: #667085;
	--border: #dfe6ee;
	--bg: #f6f8fb;
	--white: #ffffff;
	--success: #1fa66a;
	--danger: #db4b4b;
	--warning: #e29b12;
	--shadow: 0 12px 36px rgba(7,43,87,.08);
	--radius: 18px;
	--container: 1240px;

	--expot-blue: var(--navy);
	--expot-blue-light: var(--blue);
	--expot-red: var(--red);
	--expot-yellow: var(--yellow);
	--espot-light-yellow: var(--yellow-soft);
	--expot-text: var(--text);
	--expot-text-secondary: var(--muted);
	--expot-border: var(--border);
	--expot-bg: var(--bg);
	--expot-card-bg: var(--white);
	--expot-success: var(--success);
	--expot-error: var(--danger);
	--expot-radius: var(--radius);
	--expot-shadow: var(--shadow);
	--expot-shadow-hover: 0 16px 42px rgba(7,43,87,.13);
}

a:hover,
a:focus,
a:active {
	color: var(--contrast);
}

body {
	font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text);
	background-color: var(--bg);
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 700;
	color: var(--navy-dark);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
}

main{
	width: 100%;
}

/* ==========================================================================
   GeneratePress Header Override — Single column stacked layout
   Logos banner full-width, centered menu below
   ========================================================================== */

.site-header {
	background: rgba(255,255,255,.97);
	border-bottom: 1px solid rgba(7,43,87,.08);
}

.inside-header {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 100%;
	width: 100%;
	padding: 0;
	min-height: auto;
}

.site-branding-container {
	width: auto;
	display: block;
}

.site-branding { display: none; }

.site-logo {
	width: 100%;
	flex-shrink: 0;
}

.site-logo img.header-image {
	width: 100%;
	height: auto;
	max-width: 100vw;
	display: block;
}

.main-navigation {
	display: flex;
	align-items: center;
	width: 100%;
	margin-left: 0;
}

.inside-navigation {
	justify-content: center;
	width: 100%;
}

.site-navigation{
	display:none;
}

.main-navigation .inside-navigation {
	justify-content: center;
}

.main-navigation .main-nav > ul {
	display: flex;
	justify-content: center;
	width: 100%;
}

.main-navigation .main-nav ul li {
	position: relative;
}

.main-navigation .main-nav ul li a {
	position: relative;
	padding: 10px 0 7px;
	margin: 0 15px;
	font-size: 14px;
	font-weight: 600;
	color: #26354a !important;
	background: transparent !important;
}

.main-navigation .main-nav ul li a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 18px;
	height: 2px;
	background: var(--blue);
	transform: scaleX(0);
	transition: transform .2s ease;
}

.main-navigation .main-nav ul li a:hover::after,
.main-navigation .main-nav ul li.current-menu-item a::after {
	transform: scaleX(1);
}

/* Mobile menu: single navigation bar on mobile */
@media (max-width: 768px) {
	.menu-toggle {
		display: block !important;
	}
	.main-navigation .main-nav ul li a {
		margin: 0;
		padding: 12px 20px;
	}
	.main-navigation.toggled .main-nav > ul {
		display: block;
	}
}

.generate-sidebar .inside-navigation {
	background: var(--white);
}

/* Hide default GP search widget if any */
.header-widget { display: none; }

/* ==========================================================================
   Brand mark
   ========================================================================== */

.brand-mark {
	font-size: 27px;
	font-weight: 800;
	color: var(--navy-dark);
	letter-spacing: -1.2px;
}

.brand-mark span {
	color: var(--blue);
	font-weight: 500;
}

.brand-subtitle {
	display: block;
	margin-top: -3px;
	font-size: 9px;
	letter-spacing: 3px;
	color: var(--muted);
}

/* ==========================================================================
   Account pill (header)
   ========================================================================== */

.account-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px 8px 8px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: #fff;
	color: var(--navy-dark);
	font-size: 13px;
	font-weight: 800;
}

.account-avatar {
	width: 34px; height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

/* ==========================================================================
   Buttons — Design System
   ========================================================================== */

.button,
.expot-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 0 18px;
	border: 0;
	border-radius: 10px;
	font-weight: 900;
	font-size: 14px;
	transition: transform .15s ease, background .2s ease;
	cursor: pointer;
	text-decoration: none;
}

.button:hover,
.expot-btn:hover { transform: translateY(-1px); }

.button-primary,
.expot-btn-primary { background: var(--navy); color: #fff; }
.button-primary:hover,
.expot-btn-primary:hover { background: var(--blue); color: #fff; }

.button-yellow,
.expot-btn-yellow { background: var(--yellow); color: #27364a; }
.button-yellow:hover,
.expot-btn-yellow:hover { background: #e8b630; color: #27364a; }

.button-secondary,
.expot-btn-secondary { background: #edf4fb; color: var(--navy); }
.button-secondary:hover,
.expot-btn-secondary:hover { background: #d6e4f5; color: var(--navy); }

.button-outline,
.expot-btn-outline { background: #fff; color: var(--navy); border: 1px solid var(--navy); }
.button-outline:hover,
.expot-btn-outline:hover { background: var(--navy); color: #fff; }

.button-danger,
.expot-btn-danger { background: var(--red-soft); color: var(--red); }
.button-danger:hover,
.expot-btn-danger:hover { background: var(--red); color: #fff; }

.expot-btn-small { min-height: 36px; padding: 0 12px; font-size: 12px; }

/* ==========================================================================
   Cards
   ========================================================================== */

.expot-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}

.expot-card:hover {
	box-shadow: 0 16px 42px rgba(7,43,87,.13);
	transform: translateY(-2px);
}

.expot-card-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.expot-card-header .dashicons,
.expot-card-header svg {
	font-size: 1.5rem;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #edf4fb;
	color: var(--navy);
	border-radius: 12px;
}

.expot-card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--navy-dark);
	margin: 0;
}

.expot-section-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--navy-dark);
	margin-bottom: 0.5rem;
}

.expot-section-subtitle {
	font-size: 0.95rem;
	color: var(--muted);
	margin-bottom: 1.5rem;
}

/* ==========================================================================
   Home Biglietti — Hero, Ticket Cards, Form Panel, Modal
   ========================================================================== */

.hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 70px;
	background:transparent;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .32;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(6,59,115,.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(6,59,115,.035) 1px, transparent 1px);
	background-size: 36px 36px;
}

.hero-inner { position: relative; text-align: center; }

.hero-grid {
	position: relative;
	text-align: left;
}

.hero-grid p {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding: 7px 12px;
	border: 1px solid rgba(6,59,115,.12);
	background: rgba(255,255,255,.7);
	border-radius: 99px;
	color: var(--navy);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0;
	color: var(--navy-dark);
	font-size: clamp(38px, 6vw, 66px);
	line-height: 1;
	letter-spacing: -2.5px;
}

.hero h2 {
	margin: 19px 0 0;
	color: var(--navy);
	font-size: clamp(20px, 2.4vw, 31px);
	line-height: 1.2;
}

.hero p {
	max-width: 720px;
	margin: 14px auto 0;
	color: var(--muted);
	font-size: 17px;
}

.page-id-14 .hero p {
	max-width: none;
}

.ticket-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	max-width: 780px;
	margin: 42px auto 0;
}

.ticket-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 320px;
	padding: 32px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255,255,255,.96);
	box-shadow: var(--shadow);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
	cursor: pointer;
}

.ticket-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 42px rgba(7,43,87,0.13);
}

.ticket-card.featured {
	background: linear-gradient(180deg, var(--yellow-soft), #fff9e4);
	border: 2px solid var(--yellow);
}

.ticket-card button{
	margin-top:1rem;
}

.icon-circle {
	width: 68px;
	height: 68px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #edf4fb;
	color: var(--navy);
	margin-bottom: 20px;
}

.featured .icon-circle {
	background: #fff;
	color: #e2a900;
}

.ticket-card h3 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 24px;
	line-height: 1.2;
}

.ticket-card p {
	margin: 14px 0 22px;
	color: #566278;
	font-size: 15px;
	max-width: 290px;
}

.benefits {
	width: 100%;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	text-align: left;
	color: #445167;
	font-size: 14px;
}

.benefits li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-top: 9px;
}

.benefits svg {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--success);
}

.recovery-wrap { padding: 28px 0 0; background: var(--bg); }

.recovery-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
	padding: 24px 28px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--white);
	box-shadow: 0 7px 22px rgba(7,43,87,.06);
}

.recovery-card h3 {
	margin: 0 0 4px;
	color: var(--navy-dark);
	font-size: 19px;
}

.recovery-card p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.forms-section { padding: 46px 0 80px; }

.form-panel {
	display: none;
	max-width: 900px;
	margin: 0 auto;
	padding: 30px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow);
	animation: reveal .28s ease;
}

.form-panel.active { display: block; }

@keyframes reveal {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

.form-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--border);
}

.form-title-wrap { display: flex; align-items: center; gap: 16px; }

.form-icon {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: #edf4fb;
	color: var(--navy);
	flex: 0 0 auto;
}

.form-heading h3 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 25px;
}

.form-heading p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.close-form {
	border: 0;
	background: transparent;
	color: var(--muted);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(2,22,45,.62);
	backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
	position: relative;
	width: min(100%, 470px);
	padding: 34px;
	text-align: center;
	border-radius: 20px;
	background: white;
	box-shadow: 0 24px 80px rgba(0,0,0,.25);
	animation: modalIn .22s ease;
}

@keyframes modalIn {
	from { opacity: 0; transform: scale(.96) translateY(7px); }
	to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
	position: absolute;
	top: 15px; right: 17px;
	border: 0;
	background: transparent;
	color: var(--muted);
	font-size: 24px;
	cursor: pointer;
}

/* Event poster lightbox */
.expot-lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(2,22,45,.9);
	cursor: zoom-out;
}

.expot-lightbox[hidden] { display: none; }

.expot-lightbox img {
	max-width: 92vw;
	max-height: 92vh;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 24px 80px rgba(0,0,0,.4);
	cursor: zoom-out;
}

.expot-lightbox-close {
	position: absolute;
	top: 18px; right: 22px;
	width: 44px; height: 44px;
	border: 0; border-radius: 50%;
	background: rgba(255,255,255,.15);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease;
	display:flex;
	align-items: center;
	justify-content: center;
	padding-top: 6px;
}

.expot-lightbox-close:hover,
.expot-lightbox-close:focus { background: rgba(255,255,255,.28); }

.modal-icon {
	width: 70px; height: 70px;
	display: grid;
	place-items: center;
	margin: 0 auto 19px;
	border-radius: 50%;
}

.modal-icon.success { color: var(--success); background: rgba(31,166,106,.11); }
.modal-icon.warning { color: var(--warning); background: rgba(226,155,18,.12); }
.modal-icon.danger { color: var(--danger); background: rgba(219,75,75,.10); }

.modal h3 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 26px;
}

.modal p {
	margin: 13px auto 0;
	color: var(--muted);
	font-size: 15px;
	max-width: 350px;
}

.modal-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
	flex-wrap: wrap;
}

#recoveryModal .forminator-row { margin-bottom: 16px; }
#recoveryModal .forminator-label { text-align: left; }

@media (max-width: 920px) {
	.ticket-options { grid-template-columns: 1fr; }
	.ticket-card { min-height: auto; }
	.recovery-card { flex-direction: column; align-items: flex-start; }
	.form-panel { padding: 22px 18px; }
	.form-heading h3 { font-size: 21px; }
	.modal { padding: 32px 22px 24px; }
}

@media (max-width: 700px) {
	.hero { padding-top: 54px; }
}

/* ==========================================================================
   Eventi Archive — Hero, Filters, Event Cards, Pagination
   ========================================================================== */

.filters-section { padding: 32px 0 10px; scroll-margin-top: 120px; }

.filters-panel {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(7,43,87,.05);
}

.filters-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
}

.filters-top h2 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 21px;
}

.results-count {
	color: var(--muted);
	font-size: 14px;
}

.day-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.day-tab {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: #fff;
	color: var(--navy);
	font-weight: 800;
	cursor: pointer;
}

.day-tab.active {
	color: #fff;
	background: var(--navy);
	border-color: var(--navy);
}

.category-chips {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.chip {
	min-height: 38px;
	padding: 0 15px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: #f9fbfd;
	color: #34445a;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

a.chip {
	display: flex;
	align-items: center;
}

.chip.active {
	color: var(--navy-dark);
	background: var(--yellow-soft);
	border-color: var(--yellow);
}

.reset-button {
	margin-left: auto;
	border: 0;
	background: transparent;
	color: var(--blue);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.events-section { padding: 32px 0 84px; }

.events-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.event-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}

.event-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 17px 44px rgba(7,43,87,.13);
}

.event-image {
	position: relative;
	aspect-ratio: 16/8.8;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(6,59,115,.92), rgba(11,102,195,.72));
	color: var(--navy);
	overflow: hidden;
	text-decoration: none;
}

.event-image.alt {
	background: linear-gradient(135deg, rgba(2,43,87,.88), rgba(244,196,61,.38));
}

.event-image.no-image {
	background: linear-gradient(135deg, #eff5fb, #dcebf9);
}

.event-image.no-image svg { opacity: .75; }

.event-category {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--yellow);
	color: #29384c;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.event-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px;
}

.event-meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px 16px;
	flex-wrap: wrap;
	margin-bottom: 12px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.event-meta-main {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.event-meta-item {
	display: block;
}

.event-meta .event-organizer strong {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: var(--muted);
	margin-bottom: 1px;
}

.event-meta .event-organizer span {
	color: var(--navy-dark);
}

.event-meta .event-room {
	flex-shrink: 0;
}

.event-content h3 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 22px;
	line-height: 1.25;
	margin-left: -1px;
}

.event-content h3 a { color: inherit; text-decoration: none; }
.event-content h3 a:hover { color: var(--blue); }

.event-description {
	margin: 11px 0 19px;
	color: #5e6a7c;
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.event-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 22px 20px;
}

.availability {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.status {
	display: inline-flex;
	align-items: center;
	width: max-content;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--green-soft);
	color: var(--green);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.status.soldout {
	color: var(--red);
	background: var(--red-soft);
}

.status.concluso {
	color: #64748b;
	background: rgba(100, 116, 139, .12);
}

.seats {
	color: var(--muted);
	font-size: 12px;
}

.progress {
	width: 120px;
	height: 6px;
	overflow: hidden;
	border-radius: 999px;
	background: #e8edf3;
}

.progress > span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--green);
}

.button-disabled,
.button:disabled,
.button:disabled:hover,
.button:disabled:focus {
	background: #e8edf3;
	color: #7b8798;
	cursor: not-allowed;
	pointer-events: none;
}

.pagination {
	margin-top: 2rem;
	text-align: center;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	margin: 0 0.15rem;
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--navy);
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.2s ease;
}

.pagination .page-numbers.current {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}

.pagination .page-numbers:hover:not(.current) {
	background: #edf4fb;
	border-color: var(--blue);
}

.no-results {
	text-align: center;
	padding: 3rem;
	color: var(--muted);
	font-size: 1rem;
}

@media (max-width: 1024px) {
	.events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
	.events-grid { grid-template-columns: 1fr; }
	.filters-top { flex-direction: column; align-items: flex-start; }
	.reset-button { margin-left: 0; }
}

/* ==========================================================================
   Forms (legacy — to be migrated to Forminator)
   ========================================================================== */

.expot-form label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--expot-text);
	margin-bottom: 0.35rem;
}

.expot-form input[type="text"],
.expot-form input[type="email"],
.expot-form input[type="tel"],
.expot-form input[type="password"],
.expot-form input[type="date"],
.expot-form input[type="time"],
.expot-form input[type="file"],
.expot-form input[type="number"],
.expot-form select,
.expot-form textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	color: var(--expot-text);
	background: #FFFFFF;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.expot-form input:focus,
.expot-form select:focus,
.expot-form textarea:focus {
	outline: none;
	border-color: var(--expot-blue);
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.expot-form .required {
	color: var(--expot-red);
}

.expot-table-wrapper {
	overflow-x: auto;
	margin-top: 1rem;
}

.expot-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.expot-table th,
.expot-table td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--expot-border);
}

.expot-table th {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--expot-blue);
	background: rgba(0, 51, 102, 0.04);
}

.expot-table tr:hover td {
	background: rgba(0, 51, 102, 0.02);
}

.expot-notice {
	padding: 1rem 1.25rem;
	border-radius: 8px;
	margin-bottom: 1.25rem;
	font-size: 0.95rem;
}

.expot-notice-success {
	background: rgba(34, 197, 94, 0.1);
	color: #166534;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.expot-notice-error {
	background: rgba(239, 68, 68, 0.1);
	color: #991B1B;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   Biglietteria / Ticketing
   ========================================================================== */

.expot-biglietnella 	
.expot-recover,
.expot-verify {
	padding: 40px 0;
	margin: auto;
}

.expot-biglietti-header,
.expot-recover-header,
.expot-verify-header {
	text-align: center;
	margin-bottom: 40px;
}

.expot-biglietti-header h1,
.expot-recover-header h1,
.expot-verify-header h1 {
	color: #004085;
	font-size: 2.2rem;
	margin-bottom: 10px;
}

.expot-biglietti-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.expot-biglietti-card {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.expot-biglietti-card h2 {
	color: #004085;
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.expot-biglietti-card p {
	color: #555555;
	margin-bottom: 25px;
	line-height: 1.6;
}

.expot-button {
	display: inline-block;
	background-color: #004085;
	color: #ffffff !important;
	padding: 12px 24px;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.expot-button:hover,
.expot-button:focus {
	background-color: #002a55;
	color: #ffffff !important;
}

.expot-button-danger {
	background-color: #cc0000;
}

.expot-button-danger:hover,
.expot-button-danger:focus {
	background-color: #990000;
}

.expot-biglietti-recover {
	text-align: center;
	margin-top: 20px;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 6px;
}

.expot-form-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	width: 100%;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--expot-border);
}

.expot-form-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.75rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.2s ease;
	width: 100%;
}

@media (min-width: 769px) {
	.expot-form-actions {
		justify-content: space-between;
	}

	.expot-form-actions .button {
		width: auto;
		flex: 0 0 auto;
	}
}

.expot-form-actions .button-primary {
	background: var(--expot-blue);
	border: 2px solid var(--expot-blue);
	color: #FFFFFF;
}

.expot-form-actions .button-primary:hover {
	background: var(--expot-blue-light);
	border-color: var(--expot-blue-light);
}

.expot-form-actions .button-secondary {
	background: #FFFFFF;
	border: 2px solid var(--expot-border);
	color: var(--expot-text);
}

.expot-form-actions .button-secondary:hover {
	border-color: var(--expot-blue);
	color: var(--expot-blue);
}

.expot-form-actions .dashicons {
	font-size: 1.1rem;
	line-height: 1;
	width: auto;
	height: auto;
}

.expot-notice {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto 25px;
	padding: 15px 20px;
	border-radius: 4px;
	font-weight: 500;
}

.expot-notice-success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.expot-notice-error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Center .site-content in GeneratePress */
.site-content {
	display:block;
	align-items: center;
}

/* Verification page */
.expot-verify-card {
	max-width: 600px;
	margin: 0 auto;
	background: #ffffff;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.expot-verify-status-valid {
	border-color: #28a745;
}

.expot-verify-status-used {
	border-color: #ffc107;
}

.expot-verify-status {
	margin-bottom: 20px;
}

.expot-badge {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.95rem;
	text-transform: uppercase;
}

.expot-badge-success {
	background-color: #28a745;
	color: #ffffff;
}

.expot-badge-warning {
	background-color: #ffc107;
	color: #212529;
}

.expot-verify-card h2 {
	color: #004085;
	margin-bottom: 20px;
}

.expot-verify-table {
	width: 100%;
	margin-bottom: 25px;
	border-collapse: collapse;
	text-align: left;
}

.expot-verify-table th,
.expot-verify-table td {
	padding: 10px 12px;
	border-bottom: 1px solid #eeeeee;
}

.expot-verify-table th {
	color: #004085;
	width: 40%;
}

.expot-verify-qr {
	margin: 25px 0;
}

.expot-verify-qr img {
	max-width: 220px;
	height: auto;
	border: 1px solid #dddddd;
	padding: 10px;
	background-color: #ffffff;
}

.expot-verify-actions {
	margin-top: 25px;
}

/* QR Scanner (staff verification) */
.expot-scanner-section {
	margin: 40px auto;
	max-width: 600px;
	text-align: center;
}

.expot-scanner-section h2 {
	color: #004085;
	margin-bottom: 10px;
}

.expot-scanner-controls {
	margin: 20px 0;
}

.expot-scanner-controls .button {
	margin: 0 5px;
}

.expot-qr-reader {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	min-height: 250px;
	background: #f5f5f5;
	border-radius: 8px;
	overflow: hidden;
}

.expot-qr-reader video {
	display: block;
	width: 100%;
	border-radius: 8px;
}

.expot-manual-verify-section {
	margin: 40px auto;
	max-width: 600px;
	text-align: center;
}

.expot-manual-verify-section h2 {
	color: #004085;
	margin-bottom: 15px;
}

.expot-manual-verify-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.expot-manual-verify-form label {
	width: 100%;
	font-weight: 600;
	color: #004085;
}

.expot-manual-verify-form input[type="text"] {
	flex: 1 1 60%;
	min-width: 200px;
	padding: 10px 12px;
	border: 1px solid #cccccc;
	border-radius: 4px;
}

.expot-notice-info {
	background-color: #e2f0ff;
	color: #004085;
	border: 1px solid #b8daff;
}

.expot-event-registration {
	padding: 40px 0;
	border-top: 1px solid #e0e0e0;
	margin-top: 40px;
}

.expot-event-registration h2 {
	color: #004085;
	margin-bottom: 25px;
	text-align: center;
}

.expot-available-seats {
	font-weight: 600;
	color: #004085;
	margin-bottom: 20px;
}

.expot-iscritti-count {
	display: inline-block;
	background: #e8f4fd;
	color: #004085;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0 10px;
}

.expot-dashboard-events-list li {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #eeeeee;
}

.expot-dashboard-events-list li:last-child {
	border-bottom: none;
}

.expot-dashboard-events-list .button-small {
	padding: 4px 10px;
	font-size: 0.85rem;
}

.expot-event-registration label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: #333333;
}

.expot-event-registration input[type="text"],
.expot-event-registration input[type="email"],
.expot-event-registration input[type="tel"] {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	font-size: 1rem;
}

.expot-event-registration button[type="submit"] {
	width: 100%;
	padding: 14px;
	font-size: 1.1rem;
}

@media (max-width: 768px) {
	.expot-biglietti-header h1,
	.expot-recover-header h1,
	.expot-verify-header h1 {
		font-size: 1.8rem;
	}

	.expot-biglietti-grid {
		grid-template-columns: 1fr;
	}

	.expot-verify-table th,
	.expot-verify-table td {
		display: block;
		width: 100%;
	}

	.expot-dashboard-events-list li {
		flex-direction: column;
		align-items: flex-start;
	}

	.expot-event-actions {
		justify-content: flex-start;
	}
}

/* Ticket question */
.expot-ticket-question-wrap {
	margin: 30px 0;
}

.expot-ticket-question-box {
	background: #f8f9fa;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
}

.expot-ticket-question-box h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 1.4em;
}

.expot-ticket-question-box p {
	color: #555;
	margin-bottom: 25px;
}

.expot-ticket-question-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}

.expot-ticket-question-actions .button {
	padding: 12px 24px;
	font-size: 1em;
}

.expot-ticket-question-message {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	margin-bottom: 20px;
}

/* Job listing exhibitor box */
.expot-job-exhibitor-box {
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	margin-top: 30px;
}

.expot-job-exhibitor-box h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 1.2em;
}

.expot-job-exhibitor-inner {
	display: flex;
	align-items: center;
	gap: 15px;
}

.expot-job-exhibitor-logo {
	max-width: 80px;
	max-height: 80px;
	object-fit: contain;
	border-radius: 4px;
}

.expot-job-exhibitor-info h4 {
	margin: 0 0 10px;
	font-size: 1.1em;
}

.expot-job-exhibitor-info h4 a {
	text-decoration: none;
}

/* Job dashboard buttons */
.expot-dashboard-card .button {
	margin-right: 10px;
	margin-bottom: 5px;
}

/* Colloquio booking form */
.expot-job-booking-form {
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px;
	margin-top: 30px;
}

.expot-job-booking-form h3 {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 1.3em;
}

.expot-job-booking-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.expot-job-booking-form input[type="text"],
.expot-job-booking-form input[type="email"],
.expot-job-booking-form input[type="time"],
.expot-job-booking-form input[type="date"],
.expot-job-booking-form input[type="file"],
.expot-job-booking-form select {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.expot-job-booking-form .required {
	color: #c00;
}

/* Slot management */
.expot-slot-form p {
	margin-bottom: 15px;
}

.expot-slots-table,
.expot-dashboard-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
}

.expot-slots-table th,
.expot-slots-table td,
.expot-dashboard-table th,
.expot-dashboard-table td {
	border: 1px solid #e0e0e0;
	padding: 10px;
	text-align: left;
}

.expot-slots-table th,
.expot-dashboard-table th {
	background: #f1f1f1;
}

.expot-slots-table tr:nth-child(even),
.expot-dashboard-table tr:nth-child(even) {
	background: #fafafa;
}

.expot-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.expot-btn-small .dashicons {
	font-size: 1em;
	line-height: 1;
}

/* Notices */
.expot-notice {
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.expot-notice-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.expot-notice-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Hide WPJM native apply button, use application form instead */
.single-job_listing .job_application,
.job_application.application,
body.single-job_listing .job_application,
article.job_listing .job_application {
	display: none !important;
}

.expot-booking-intro {
	font-style: italic;
	color: #555;
	margin-bottom: 15px;
}

/* ==========================================================================
   Dashboard Espositore
   ========================================================================== */

.expot-dashboard {
	padding: 40px 1rem 6rem;
}

.expot-dashboard-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.expot-dashboard-logo {
	max-width: 120px;
	max-height: 120px;
	object-fit: contain;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: var(--expot-shadow);
}

.expot-dashboard-header h1 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.expot-dashboard-welcome {
	color: var(--expot-text-secondary);
	font-size: 1.1rem;
}

.expot-dashboard-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.expot-stat-card {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.5rem;
	text-align: center;
	box-shadow: var(--expot-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.expot-stat-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--expot-shadow-hover);
}

.expot-stat-card .dashicons {
	font-size: 2rem;
	color: var(--expot-blue);
	margin-bottom: 0.75rem;
}

.expot-stat-value {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--expot-blue);
}

.expot-stat-label {
	font-size: 0.9rem;
	color: var(--expot-text-secondary);
}

.expot-dashboard-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.expot-dashboard-company .expot-dashboard-desc {
	color: var(--expot-text-secondary);
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.expot-dashboard-contacts {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

.expot-dashboard-contacts li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0;
	color: var(--expot-text);
	border-bottom: 1px solid var(--expot-border);
}

.expot-dashboard-contacts li:last-child {
	border-bottom: none;
}

.expot-dashboard-contacts .dashicons {
	color: var(--expot-blue);
}

.expot-dashboard-social h3 {
	font-size: 1rem;
	margin-bottom: 0.75rem;
}

.expot-dashboard-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.expot-dashboard-social a {
	color: var(--expot-blue);
	text-decoration: none;
	font-weight: 500;
}

.expot-dashboard-social a:hover {
	text-decoration: underline;
}

.expot-dashboard-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.expot-dashboard-events-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.expot-dashboard-events-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--expot-border);
	flex-wrap: nowrap;
}

.expot-dashboard-events-list li:last-child {
	border-bottom: none;
}

.expot-dashboard-events-list a {
	color: var(--expot-blue);
	font-weight: 700;
	text-decoration: none;
}

.expot-dashboard-events-list a:hover {
	text-decoration: underline;
}

.expot-event-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	flex: 1 1 auto;
	min-width: 0;
}

.expot-event-title {
	font-weight: 700;
}

.expot-event-meta {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	flex: 0 0 auto;
	font-size: 0.8rem;
	color: var(--expot-text-secondary);
}

.expot-event-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: flex-end;
	flex: 0 0 auto;
}

.expot-dashboard-jobs-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.expot-dashboard-jobs-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--expot-border);
	flex-wrap: wrap;
}

.expot-dashboard-jobs-list li:last-child {
	border-bottom: none;
}

.expot-dashboard-jobs-list a {
	color: var(--expot-blue);
	font-weight: 700;
	text-decoration: none;
}

.expot-dashboard-jobs-list a:hover {
	text-decoration: underline;
}

.expot-jobs-count {
	font-size: 0.85rem;
	color: var(--expot-text-secondary);
	background: rgba(0, 51, 102, 0.06);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	white-space: nowrap;
}

.expot-dashboard-jobs .expot-table th.col-shrink,
.expot-dashboard-jobs .expot-table td.col-shrink {
	width: 1%;
	white-space: nowrap;
}

.expot-dashboard-jobs .actions {
	flex-wrap: nowrap;
}

.expot-header-action-btn {
	margin-left: auto;
}

.expot-status {
	font-size: 0.8rem;
	color: var(--expot-text-secondary);
}

.expot-iscritti-count {
	font-size: 0.85rem;
	color: var(--expot-text-secondary);
	background: rgba(0, 51, 102, 0.06);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
}

.expot-quick-actions-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.expot-quick-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1.25rem;
	background: var(--expot-card-bg);
	border: 2px solid var(--expot-border);
	border-radius: var(--expot-radius);
	color: var(--expot-blue);
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	transition: all 0.2s ease;
}

.expot-quick-action:hover {
	background: var(--expot-blue);
	border-color: var(--expot-blue);
	color: #FFFFFF;
	transform: translateY(-3px);
}

.expot-quick-action .dashicons {
	font-size: 1.75rem;
}

/* ==========================================================================
   Single Job Listing
   ========================================================================== */

.single-job_listing .entry-content {
	padding: 40px 0;
}

.single-job_listing .single_job_listing {
	margin-bottom: 2rem;
}

.single-job_listing .job-listing-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.75rem;
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.single-job_listing .job-listing-meta li {
	padding: 0.4rem 0.75rem;
	background: rgba(0, 51, 102, 0.06);
	border-radius: 20px;
	font-size: 0.85rem;
	color: var(--expot-blue);
}

.single-job_listing .job-listing-meta a {
	color: var(--expot-blue);
	text-decoration: none;
}

.single-job_listing .company {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: #FAFAFA;
	border-radius: var(--expot-radius);
}

.single-job_listing .company_logo {
	max-width: 80px;
	max-height: 80px;
	object-fit: contain;
	border-radius: 8px;
}

.single-job_listing .job_description {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--expot-text);
	margin-bottom: 2rem;
}

.expot-job-exhibitor-box {
	margin-bottom: 2rem;
}

.expot-job-exhibitor-inner {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.expot-job-exhibitor-logo {
	max-width: 90px;
	max-height: 90px;
	object-fit: contain;
	border-radius: 10px;
	border: 1px solid var(--expot-border);
}

.expot-job-exhibitor-info h4 {
	font-size: 1.25rem;
	margin: 0 0 0.5rem;
}

.expot-job-exhibitor-email {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
}

.expot-job-exhibitor-email a {
	color: var(--expot-text-secondary);
	text-decoration: none;
}

.expot-job-booking-form {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 2rem;
	box-shadow: var(--expot-shadow);
	margin-top: 2rem;
}

.expot-job-booking-form h3 {
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-size: 1.4rem;
}

.expot-job-booking-form form {
	margin-top: 1.5rem;
}

.expot-job-booking-form p {
	margin-bottom: 1.25rem;
}

.expot-job-booking-form button[type="submit"] {
	background: var(--expot-blue);
	color: #FFFFFF;
	border: 2px solid var(--expot-blue);
	padding: 0.75rem 1.5rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.expot-job-booking-form button[type="submit"]:hover {
	background: var(--expot-blue-light);
	border-color: var(--expot-blue-light);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
	.expot-dashboard-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.expot-dashboard-grid {
		grid-template-columns: 1fr;
	}

	.expot-dashboard-grid .expot-dashboard-company,
	.expot-dashboard-grid .expot-dashboard-colloqui,
	.expot-dashboard-grid .expot-dashboard-events,
	.expot-dashboard-grid .expot-dashboard-notifications,
	.expot-dashboard-grid .expot-dashboard-quick-actions {
		grid-column: span 1;
	}

	.expot-quick-actions-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.expot-dashboard {
		padding: 20px 1rem 4rem;
	}

	.expot-dashboard-header h1 {
		font-size: 1.5rem;
	}

	.expot-dashboard-stats {
		grid-template-columns: 1fr;
	}

	.expot-quick-actions-grid {
		grid-template-columns: 1fr;
	}

	.expot-job-exhibitor-inner {
		flex-direction: column;
		text-align: center;
	}

	.expot-job-booking-form {
		padding: 1.25rem;
	}
}

/* ==========================================================================
   Dashboard mobile adaptations (notifications, events/jobs lists, tables)
   ========================================================================== */
@media (max-width: 700px) {
	.expot-dashboard-events-list li,
	.expot-dashboard-jobs-list li {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0.5rem;
	}

	.expot-dashboard-events-list a,
	.expot-dashboard-jobs-list a {
		margin-right: 0;
	}

	.expot-dashboard-events-list .expot-status,
	.expot-dashboard-events-list .expot-iscritti-count,
	.expot-dashboard-jobs-list .expot-jobs-count {
		margin-left: 0;
	}

	.expot-event-actions {
		justify-content: flex-start;
	}

	.expot-dashboard-notifications-list li {
		flex-wrap: wrap;
		gap: 0.25rem 0.75rem;
	}

	.expot-dashboard-notifications-list li .dashicons {
		flex-shrink: 0;
	}

	.expot-dashboard-notifications-list .expot-notification-summary {
		flex: 1 1 0%;
		min-width: 0;
	}

	.expot-dashboard-notifications-list small {
		flex-basis: 100%;
		margin-left: 2.2rem;
		white-space: normal;
	}

	.expot-dashboard-candidature .expot-dashboard-table,
	.expot-dashboard-colloqui .expot-dashboard-table,
	.expot-dashboard-candidature .expot-dashboard-table thead,
	.expot-dashboard-candidature .expot-dashboard-table tbody,
	.expot-dashboard-candidature .expot-dashboard-table tr,
	.expot-dashboard-candidature .expot-dashboard-table th,
	.expot-dashboard-candidature .expot-dashboard-table td,
	.expot-dashboard-colloqui .expot-dashboard-table thead,
	.expot-dashboard-colloqui .expot-dashboard-table tbody,
	.expot-dashboard-colloqui .expot-dashboard-table tr,
	.expot-dashboard-colloqui .expot-dashboard-table th,
	.expot-dashboard-colloqui .expot-dashboard-table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	.expot-dashboard-candidature .expot-dashboard-table thead,
	.expot-dashboard-colloqui .expot-dashboard-table thead {
		display: none;
	}

	.expot-dashboard-candidature .expot-dashboard-table tr,
	.expot-dashboard-colloqui .expot-dashboard-table tr {
		margin-bottom: 1rem;
		padding: 0.75rem 0;
		border-bottom: 1px solid var(--expot-border);
	}

	.expot-dashboard-candidature .expot-dashboard-table td,
	.expot-dashboard-colloqui .expot-dashboard-table td {
		border: none;
		padding: 0.35rem 0;
		text-align: left;
	}

	.expot-dashboard-candidature .expot-dashboard-table td::before,
	.expot-dashboard-colloqui .expot-dashboard-table td::before {
		content: attr(data-label);
		display: block;
		font-size: 0.7rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.03em;
		color: var(--expot-text-secondary);
		margin-bottom: 0.15rem;
	}
}

/* ==========================================================================
   WP Job Manager Archive
   ========================================================================== */

.job_listings {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 2rem;
}

.job_listing {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.5rem;
	box-shadow: var(--expot-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job_listing:hover {
	transform: translateY(-3px);
	box-shadow: var(--expot-shadow-hover);
}

.job_listing a {
	text-decoration: none;
}

.job_listing .job_listing-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--expot-blue);
	margin-bottom: 0.5rem;
}

.job_listing .job_listing-company,
.job_listing .job_listing-location {
	font-size: 0.9rem;
	color: var(--expot-text-secondary);
	margin-bottom: 0.35rem;
}

.job_listing .job_listing-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.job_listing .job_listing-meta li {
	padding: 0.3rem 0.75rem;
	background: rgba(0, 51, 102, 0.06);
	border-radius: 20px;
	font-size: 0.8rem;
	color: var(--expot-blue);
}

.job_listing .job-type {
	color: var(--expot-blue);
	font-weight: 500;
}

.job-manager-pagination,
.nav-links {
	margin-top: 2rem;
}

.job-manager-pagination .page-numbers,
.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	margin-right: 0.5rem;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	color: var(--expot-blue);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
}

.job-manager-pagination .page-numbers.current,
.nav-links .page-numbers.current {
	background: var(--expot-blue);
	color: #FFFFFF;
	border-color: var(--expot-blue);
}

.job-manager-pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
	background: var(--expot-blue);
	color: #FFFFFF;
	border-color: var(--expot-blue);
}

.job_filters {
	background: #FAFAFA;
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.job_filters input[type="text"],
.job_filters select {
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	font-family: 'Roboto', sans-serif;
}

.job_filters .showing_jobs {
	font-size: 0.9rem;
	color: var(--expot-text-secondary);
}

.job_filters .reset {
	color: var(--expot-blue);
	font-weight: 500;
}

/* ==========================================================================
   WP Job Manager Submit Form
   ========================================================================== */

.job-manager-form {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 2rem;
	box-shadow: var(--expot-shadow);
}

.job-manager-form fieldset {
	border: none;
	padding: 0;
	margin: 0 0 2rem;
}

.job-manager-form fieldset:last-child {
	margin-bottom: 0;
}

.job-manager-form fieldset label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--expot-text);
	margin-bottom: 0.4rem;
}

.job-manager-form fieldset input[type="text"],
.job-manager-form fieldset input[type="email"],
.job-manager-form fieldset input[type="url"],
.job-manager-form fieldset input[type="password"],
.job-manager-form fieldset input[type="number"],
.job-manager-form fieldset textarea,
.job-manager-form fieldset select {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	color: var(--expot-text);
	background: #FFFFFF;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.job-manager-form fieldset input:focus,
.job-manager-form fieldset textarea:focus,
.job-manager-form fieldset select:focus {
	outline: none;
	border-color: var(--expot-blue);
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.job-manager-form fieldset .description {
	font-size: 0.85rem;
	color: var(--expot-text-secondary);
	margin-top: 0.35rem;
}

.job-manager-form fieldset .required {
	color: var(--expot-red);
}

.job-manager-form .button {
	background: var(--expot-blue);
	color: #FFFFFF;
	border: 2px solid var(--expot-blue);
	padding: 0.75rem 1.5rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.job-manager-form .button:hover {
	background: var(--expot-blue-light);
	border-color: var(--expot-blue-light);
}

/* ==========================================================================
   Create Event Form
   ========================================================================== */

.expot-create-event {
	padding: 40px 0;
}

.expot-create-event h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.expot-event-form {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 2rem;
	box-shadow: var(--expot-shadow);
}

.expot-event-form-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1.5rem;
	align-items: start;
}

.expot-event-form-main,
.expot-event-form-details {
	min-width: 0;
}

.expot-event-form-details {
	display: flex;
	flex-direction: column;
}

.expot-event-form fieldset {
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.expot-event-form legend {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--expot-blue);
	padding: 0 0.75rem;
}

.expot-event-form label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.35rem;
}

.expot-event-form input[type="text"],
.expot-event-form input[type="date"],
.expot-event-form input[type="number"],
.expot-event-form input[type="file"],
.expot-event-form select,
.expot-event-form textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	margin-bottom: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.expot-event-form input:focus,
.expot-event-form select:focus,
.expot-event-form textarea:focus {
	outline: none;
	border-color: var(--expot-blue);
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.expot-event-form button[type="submit"] {
	background: var(--expot-blue);
	color: #FFFFFF;
	border: 2px solid var(--expot-blue);
	padding: 0.75rem 1.5rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.expot-event-form button[type="submit"]:hover {
	background: var(--expot-blue-light);
	border-color: var(--expot-blue-light);
}

.expot-datetime-blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.expot-datetime-block {
	flex: 1 1 280px;
	min-width: 0;
	background: #FAFAFA;
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.25rem;
}

.expot-datetime-block--start {
	border-left: 4px solid var(--expot-blue);
}

.expot-datetime-block--end {
	border-left: 4px solid var(--expot-yellow);
}

.expot-datetime-block-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--expot-blue);
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.expot-event-form .expot-form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 0;
}

.expot-event-form .expot-form-col {
	flex: 1;
	min-width: 160px;
}

.expot-time-col {
	flex: 0 0 auto;
}

.expot-time-selects {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.expot-time-selects select {
	width: 70px;
	padding: 0.65rem 0.5rem;
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	text-align: center;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	background: #FFFFFF;
	margin-bottom: 0 !important;
}

.expot-time-separator {
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--expot-blue);
}

.expot-time-format {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	color: var(--expot-text-secondary);
	font-style: italic;
}

@media (max-width: 992px) {
	.expot-event-form-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (max-width: 768px) {
	.expot-event-form .expot-form-row {
		flex-direction: column;
	}

	.expot-event-form .expot-form-col {
		min-width: auto;
	}
}

/* ==========================================================================
   Manage Slots
   ========================================================================== */

.expot-manage-slots {
	padding: 40px 0;
}

.expot-manage-slots h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.expot-slot-form {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	align-items: end;
}

.expot-slot-form p {
	margin: 0;
}

@media (max-width: 768px) {
	.expot-slot-form {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Event Archive
   ========================================================================== */

.expot-events-archive {
	padding: 40px 0;
}

.expot-events-archive h1 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.expot-events-intro {
	color: var(--expot-text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.expot-events-filter {
	background: #FAFAFA;
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	align-items: end;
}

.expot-filter-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 220px;
	flex: 1;
}

.expot-filter-field label {
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--expot-blue);
}

.expot-filter-field select {
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	background: #FFFFFF;
}

.expot-filter-field small {
	font-size: 0.8rem;
	color: var(--expot-text-secondary);
}

.expot-filter-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.expot-filter-actions .button {
	background: var(--expot-blue);
	color: #FFFFFF;
	border: 2px solid var(--expot-blue);
	padding: 0.65rem 1.25rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
}

.expot-filter-actions .button:hover {
	background: var(--expot-blue-light);
	border-color: var(--expot-blue-light);
}

.expot-active-filters {
	background: rgba(0, 51, 102, 0.04);
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	color: var(--expot-text);
}

.expot-events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
}

.expot-event-card {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	overflow: hidden;
	box-shadow: var(--expot-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.expot-event-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--expot-shadow-hover);
}

.expot-event-image {
	height: 180px;
	background: linear-gradient(135deg, var(--expot-blue), var(--expot-blue-light));
	overflow: hidden;
}

.expot-event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.expot-event-card:hover .expot-event-image img {
	transform: scale(1.05);
}

.expot-event-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.expot-event-body h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--expot-blue);
	margin: 0 0 0.75rem;
}

.expot-event-body h2 a {
	color: inherit;
	text-decoration: none;
}

.expot-event-body h2 a:hover {
	color: var(--expot-blue-light);
}

.expot-event-meta {
	font-size: 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 0rem;
	margin-bottom: 0;
	min-width: 7rem;
}

.expot-event-datetime,
.expot-event-room,
.expot-event-categories {
	font-size: 0.85rem;
	color: var(--expot-text-secondary);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

span.event-meta-item.event-datetime {
	margin-top: 8px;
}

.expot-event-categories a {
	color: var(--expot-blue);
	text-decoration: none;
	font-weight: 500;
}

.expot-event-categories a:hover {
	text-decoration: underline;
}

.expot-event-excerpt {
	font-size: 0.95rem;
	color: var(--expot-text);
	line-height: 1.6;
	margin-bottom: 1.25rem;
	flex: 1;
}

.expot-event-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid var(--expot-border);
	margin-top: auto;
}

.expot-event-status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.expot-event-status--available {
	background: rgba(34, 197, 94, 0.12);
	color: #166534;
}

.expot-event-status--almost_full {
	background: rgba(242, 169, 0, 0.15);
	color: #92400E;
}

.expot-event-status--sold_out {
	background: rgba(217, 35, 46, 0.1);
	color: #991B1B;
}

.expot-event-seats {
	font-size: 0.85rem;
	color: var(--expot-text-secondary);
	margin-left: auto;
}

.expot-event-footer .button {
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
}

.expot-event-footer .button-primary {
	background: var(--expot-blue);
	color: #FFFFFF;
	border: 2px solid var(--expot-blue);
}

.expot-event-footer .button-primary:hover {
	background: var(--expot-blue-light);
	border-color: var(--expot-blue-light);
}

.expot-event-footer .disabled {
	background: #E5E7EB;
	color: var(--expot-text-secondary);
	border: 2px solid #E5E7EB;
	cursor: not-allowed;
}

@media (max-width: 768px) {
	.expot-events-filter {
		flex-direction: column;
		align-items: stretch;
	}

	.expot-filter-field {
		min-width: auto;
	}

	.expot-event-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.expot-event-seats {
		margin-left: 0;
	}
}

/* ==========================================================================
   Login / Register
   ========================================================================== */

.expot-login {
	padding: 60px 0;
}

.expot-login-card {
	max-width: 480px;
	margin: 0 auto;
}

.expot-login-card h1 {
	text-align: center;
	margin-bottom: 0.5rem;
}

.expot-login-card p {
	text-align: center;
	color: var(--expot-text-secondary);
	margin-bottom: 1.5rem;
}

.expot-login-form {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 2rem;
	box-shadow: var(--expot-shadow);
}

.expot-login-form label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.35rem;
}

.expot-login-form input[type="text"],
.expot-login-form input[type="email"],
.expot-login-form input[type="password"] {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	margin-bottom: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.expot-login-form input:focus {
	outline: none;
	border-color: var(--expot-blue);
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.expot-login-form button,
.expot-login-form input[type="submit"] {
	width: 100%;
	background: var(--expot-blue);
	color: #FFFFFF;
	border: 2px solid var(--expot-blue);
	padding: 0.75rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.expot-login-form button:hover,
.expot-login-form input[type="submit"]:hover {
	background: var(--expot-blue-light);
	border-color: var(--expot-blue-light);
}

/* ==========================================================================
   Ticketing Pages
   ========================================================================== */

.expot-biglietti,
.expot-recover,
.expot-verify {
	padding: 60px 0;
}

.expot-biglietti-header,
.expot-recover-header,
.expot-verify-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.expot-biglietti-header h1,
.expot-recover-header h1,
.expot-verify-header h1 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.expot-biglietti-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.expot-biglietti-card {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 2rem;
	text-align: center;
	box-shadow: var(--expot-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.expot-biglietti-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--expot-shadow-hover);
}

.expot-biglietti-card h2 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.expot-biglietti-card p {
	color: var(--expot-text-secondary);
	margin-bottom: 1.5rem;
}

.expot-biglietti-card .dashicons {
	font-size: 2.5rem;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	background: rgba(0, 51, 102, 0.08);
	color: var(--expot-blue);
	border-radius: 12px;
}

.expot-biglietti-card--active {
	border-color: var(--expot-blue);
	box-shadow: 0 0 0 2px var(--expot-blue), var(--expot-shadow-hover);
	transform: translateY(-4px);
}

.expot-biglietti-card--active .dashicons {
	background: var(--expot-blue);
	color: #FFFFFF;
}

.expot-biglietti-card--active .expot-btn-primary {
	background: var(--expot-blue-light);
	border-color: var(--expot-blue-light);
}

.expot-biglietti-card:focus-visible {
	outline: 3px solid var(--expot-blue);
	outline-offset: 2px;
}

.expot-biglietti-card-action {
	pointer-events: none;
}

.expot-biglietti-form-area {
	min-height: 200px;
}

.expot-form-section {
	display: none;
}

.expot-form-section--active {
	display: block;
	animation: expot-fade-in 0.3s ease;
}

@keyframes expot-fade-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.expot-ticket-form {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 2rem;
	box-shadow: var(--expot-shadow);
}

.expot-ticket-form fieldset {
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.5rem;
	margin: 0;
}

.expot-ticket-form legend {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--expot-blue);
	padding: 0 0.75rem;
}

.expot-ticket-form .expot-form-wrapper {
	background: transparent;
	border-radius: 0;
	padding: 0;
	margin-top: 0;
}

@media (max-width: 768px) {
	.expot-biglietti-card .dashicons {
		font-size: 2rem;
		width: 2.5rem;
		height: 2.5rem;
	}

	.expot-ticket-form {
		padding: 1.25rem;
	}

	.expot-ticket-form fieldset {
		padding: 1rem;
	}
}

/* ==========================================================================
   Event Attendees List (Printable)
   ========================================================================== */

.expot-attendees-list {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.5rem;
	box-shadow: var(--expot-shadow);
}

.expot-attendees-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--expot-border);
}

.expot-attendees-header {
	margin-bottom: 1.5rem;
}

.expot-attendees-header h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	color: var(--expot-blue);
	margin-bottom: 0.25rem;
}

.expot-attendees-header p {
	color: var(--expot-text-secondary);
	font-size: 0.9rem;
	margin: 0;
}

.expot-attendees-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
}

.expot-attendees-table th,
.expot-attendees-table td {
	padding: 0.75rem;
	text-align: left;
	border-bottom: 1px solid var(--expot-border);
}

.expot-attendees-table th {
	background: #F8F9FA;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--expot-blue);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.expot-attendees-table td {
	font-size: 0.95rem;
}

.expot-attendees-table tbody tr:hover {
	background: #FAFAFA;
}

.expot-attendees-total {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--expot-blue);
	margin-top: 1rem;
	text-align: right;
}

.expot-attendee-actions-col,
.expot-attendee-actions {
	text-align: center;
	width: 70px;
}

.expot-attendee-delete {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 8px;
	background: transparent;
	color: #e11d48;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}

.expot-attendee-delete:hover,
.expot-attendee-delete:focus {
	background: #ffe4e6;
	color: #be123c;
}

.expot-attendee-delete svg {
	display: block;
}

.expot-organizer-attendees-section {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 2px solid var(--expot-border);
}

.expot-organizer-attendees-section h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	color: var(--expot-blue);
	margin-bottom: 1.5rem;
}

.print-only {
	display: none;
}

@media print {
	.no-print {
		display: none !important;
	}

	.print-only {
		display: block !important;
	}

	.expot-attendee-actions-col,
	.expot-attendee-actions {
		display: none !important;
	}

	.expot-attendees-list {
		border: none;
		box-shadow: none;
		padding: 0;
	}

	.expot-attendees-table th {
		background: #F0F0F0 !important;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	.expot-attendees-table,
	.expot-attendees-table th,
	.expot-attendees-table td {
		border: 1px solid #CCCCCC;
	}
}

.expot-form-row {
	margin-bottom: 1.25rem;
}

.expot-form-row label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.35rem;
}

.expot-form-row input[type="text"],
.expot-form-row input[type="email"],
.expot-form-row input[type="tel"] {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.expot-form-row input:focus {
	outline: none;
	border-color: var(--expot-blue);
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

/* ==========================================================================
   Exhibitor Menu Bar
   ========================================================================== */

.expot-exhibitor-menu-bar {
	background: var(--expot-blue);
	color: #FFFFFF;
	padding: 0.75rem 0;
}

.expot-exhibitor-menu-bar .inside-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.expot-exhibitor-menu-bar .menu-label {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 0.9rem;
}

.expot-exhibitor-menu-bar ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.expot-exhibitor-menu-bar li a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.85rem;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	border-radius: 6px;
	transition: background 0.2s ease;
}

.expot-exhibitor-menu-bar li a:hover {
	background: rgba(255, 255, 255, 0.15);
}

.expot-exhibitor-menu-bar .dashicons {
	font-size: 1rem;
	width: auto;
	height: auto;
}

/* ==========================================================================
   Single Event Template
   ========================================================================== */

.expot-single-event {
	padding: 40px 0;
}

.expot-single-event-header {
	text-align: center;
	margin-bottom: 2rem;
}

.expot-single-event-header h1 {
	font-family: var(--expot-font-title);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: var(--expot-blue);
	margin-bottom: 1rem;
}

.expot-single-event-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 2rem;
	color: var(--expot-gray-dark);
	font-size: 0.95rem;
}

.expot-single-event-content {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 2.5rem;
	margin-bottom: 3rem;
}

@media (max-width: 768px) {
	.expot-single-event-content {
		grid-template-columns: 1fr;
	}
}

.expot-single-event-poster {
	margin-bottom: 1.5rem;
}

.expot-single-event-poster img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.expot-single-event-body {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--expot-gray-dark);
}

.expot-single-event-sidebar {
	background: var(--expot-gray-light);
	border-radius: 12px;
	padding: 1.5rem;
	height: fit-content;
}

.expot-single-event-seats {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--expot-gray-border);
}

.expot-single-event-seats .expot-event-status {
	font-weight: 600;
	padding: 0.35rem 0.75rem;
	border-radius: 20px;
	font-size: 0.85rem;
}

.expot-single-event-seats .expot-event-seats {
	font-size: 0.95rem;
	color: var(--expot-gray-dark);
}

/* ==========================================================================
   Job Listing Custom Fields
   ========================================================================== */

.expot-job-custom-fields {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.expot-job-fields-list {
	display: grid;
	gap: 1rem;
}

.expot-job-field {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.5rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

.expot-job-field--block {
	flex-direction: column;
	gap: 0.5rem;
}

.expot-job-field-label {
	font-weight: 600;
	color: var(--expot-blue);
}

.expot-job-field-value {
	color: var(--expot-gray-dark);
}

.expot-job-field-value p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Job Application Form (Candidatura)
   ========================================================================== */

.expot-job-candidatura-form {
	background: var(--expot-gray-light);
	border-radius: 12px;
	padding: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.expot-job-candidatura-form h3 {
	font-family: var(--expot-font-title);
	color: var(--expot-blue);
	margin: 0 0 0.5rem;
}

.expot-candidatura-intro {
	color: var(--expot-gray-dark);
	font-size: 0.95rem;
	margin-bottom: 1.25rem;
}

.expot-job-candidatura-form .expot-form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1rem;
}

.expot-job-candidatura-form .expot-form-col {
	flex: 1;
	min-width: 200px;
	margin: 0;
}

.expot-job-candidatura-form label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.35rem;
	color: var(--expot-blue);
}

.expot-job-candidatura-form .required {
	color: #D9232E;
}

.expot-job-candidatura-form input[type="text"],
.expot-job-candidatura-form input[type="email"],
.expot-job-candidatura-form input[type="file"],
.expot-job-candidatura-form textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	background: #FFFFFF;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.expot-job-candidatura-form input[type="file"] {
	padding: 0.5rem;
}

.expot-job-candidatura-form input:focus,
.expot-job-candidatura-form textarea:focus {
	outline: none;
	border-color: var(--expot-blue);
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.expot-job-candidatura-form textarea {
	resize: vertical;
}

.expot-job-candidatura-form button[type="submit"] {
	margin-top: 0.5rem;
}

/* ==========================================================================
   Job Listings - Create / Archive / Single
   ========================================================================== */

.expot-create-job {
	padding: 40px 0;
}

.expot-create-job h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.expot-job-form {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 2rem;
	box-shadow: var(--expot-shadow);
}

.expot-job-form fieldset {
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.expot-job-form legend {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--expot-blue);
	padding: 0 0.75rem;
}

.expot-job-form label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.35rem;
	color: var(--expot-blue);
}

.expot-job-form input[type="text"],
.expot-job-form input[type="email"],
.expot-job-form select,
.expot-job-form textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	margin-bottom: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.expot-job-form input:focus,
.expot-job-form select:focus,
.expot-job-form textarea:focus {
	outline: none;
	border-color: var(--expot-blue);
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.expot-job-form .wp-editor-wrap {
	margin-bottom: 1rem;
}

/* Jobs archive */
.expot-jobs-archive {
	padding: 40px 0;
}

.expot-jobs-archive h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.expot-jobs-filters {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: var(--expot-shadow);
}

.expot-filters-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	align-items: end;
}

.expot-filter-col label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.35rem;
	color: var(--expot-blue);
}

.expot-filter-col input,
.expot-filter-col select {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
}

.expot-filter-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.expot-active-filters {
	margin-bottom: 1rem;
	color: var(--expot-gray-dark);
}

.expot-jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.expot-job-card {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 1.5rem;
	box-shadow: var(--expot-shadow);
	display: flex;
	flex-direction: column;
}

.expot-job-card-header {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.expot-job-card-logo {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}

.expot-job-card-meta h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 0.25rem;
	line-height: 1.3;
}

.expot-job-card-meta h2 a {
	color: var(--expot-blue);
	text-decoration: none;
}

.expot-job-card-meta h2 a:hover {
	color: var(--expot-red);
}

.expot-job-company {
	font-size: 0.9rem;
	color: var(--expot-gray-dark);
}

.expot-job-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.expot-job-tag {
	display: inline-block;
	padding: 0.25rem 0.65rem;
	background: rgba(0, 51, 102, 0.08);
	border-radius: 20px;
	font-size: 0.8rem;
	color: var(--expot-blue);
}

.expot-job-tag--category {
	background: rgba(217, 35, 46, 0.08);
	color: var(--expot-red);
}

.expot-job-card-excerpt {
	color: var(--expot-gray-dark);
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 1.25rem;
	flex: 1;
}

.expot-job-card-actions {
	margin-top: auto;
}

.expot-pagination {
	margin-top: 2rem;
	text-align: center;
}

.expot-pagination .page-numbers {
	display: inline-block;
	padding: 0.5rem 0.85rem;
	margin: 0 0.15rem;
	border: 1px solid var(--expot-border);
	border-radius: 6px;
	color: var(--expot-blue);
	text-decoration: none;
	transition: background 0.2s ease;
}

.expot-pagination .page-numbers.current {
	background: var(--expot-blue);
	color: #FFFFFF;
	border-color: var(--expot-blue);
}

.expot-pagination .page-numbers:hover:not(.current) {
	background: var(--expot-gray-light);
}

/* Single job */
.expot-single-job {
	padding: 40px 0;
}

.expot-job-article {
	background: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	padding: 2rem;
	box-shadow: var(--expot-shadow);
	max-width: 900px;
	margin: 0 auto;
}

.expot-job-header {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--expot-border);
}

.expot-job-header-logo {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 12px;
	flex-shrink: 0;
}

.expot-job-header-content {
	flex: 1;
}

.expot-job-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.expot-job-category-badge {
	display: inline-block;
	padding: 0.2rem 0.6rem;
	background: var(--expot-blue);
	color: #FFFFFF;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 500;
}

.expot-job-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--expot-blue);
	margin: 0 0 0.25rem;
}

.expot-job-company-name {
	font-size: 1rem;
	color: var(--expot-gray-dark);
	margin: 0 0 0.75rem;
}

.expot-job-content {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--expot-gray-dark);
	margin-bottom: 1.5rem;
}

.expot-job-actions {
	margin-bottom: 2rem;
}

/* Exhibitor jobs dashboard */
.expot-exhibitor-jobs {
	padding: 40px 0;
}

.expot-exhibitor-jobs h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

/* ==========================================================================
   Unified form styles: candidatura, biglietti, event registration, custom forms
   ========================================================================== */

.expot-form:not(.expot-job-form):not(.expot-event-form):not(.expot-slot-form),
.expot-form-wrapper,
.expot-job-candidatura-form,
.expot-event-registration,
.expot-event-registration-form {
	background: var(--expot-gray-light);
	border-radius: 12px;
	padding: 1.5rem;
	margin-top: 1.5rem;
}

.expot-form-wrapper .expot-form,
.expot-event-registration .expot-form {
	background: transparent;
	border-radius: 0;
	padding: 0;
	margin-top: 0;
}

/* Labels */
.expot-form label,
.expot-form-wrapper .forminator-label,
.expot-form-wrapper .forminator-field-label,
.expot-job-candidatura-form label,
.expot-event-registration label,
.expot-event-registration-form .forminator-label,
.expot-event-registration-form .forminator-field-label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--expot-blue) !important;
	margin-bottom: 0.35rem;
}

/* Required asterisk */
.expot-form .required,
.form-shell .required,
.expot-form-wrapper .forminator-required,
.expot-form-wrapper .forminator-label span,
.expot-job-candidatura-form .required,
.expot-event-registration .required,
.expot-event-registration-form .forminator-required,
.expot-event-registration-form .forminator-label span {
	color: var(--expot-red);
}

/* Inputs */
.expot-form input[type="text"],
.expot-form input[type="email"],
.expot-form input[type="tel"],
.expot-form input[type="password"],
.expot-form input[type="date"],
.expot-form input[type="time"],
.expot-form input[type="file"],
.expot-form input[type="number"],
.expot-form select,
.expot-form textarea,
.expot-form-wrapper .forminator-input,
.expot-form-wrapper .forminator-textarea,
.expot-form-wrapper .forminator-select,
.expot-form-wrapper select,
.expot-form-wrapper input[type="text"],
.expot-form-wrapper input[type="email"],
.expot-form-wrapper input[type="tel"],
.expot-form-wrapper input[type="date"],
.expot-form-wrapper input[type="number"],
.expot-form-wrapper textarea,
.expot-job-candidatura-form input[type="text"],
.expot-job-candidatura-form input[type="email"],
.expot-job-candidatura-form input[type="file"],
.expot-job-candidatura-form textarea,
.expot-event-registration input[type="text"],
.expot-event-registration input[type="email"],
.expot-event-registration input[type="tel"],
.expot-event-registration select,
.expot-event-registration-form .forminator-input,
.expot-event-registration-form .forminator-textarea,
.expot-event-registration-form .forminator-select,
.expot-event-registration-form select,
.expot-event-registration-form input[type="text"],
.expot-event-registration-form input[type="email"],
.expot-event-registration-form input[type="tel"],
.expot-event-registration-form input[type="date"],
.expot-event-registration-form input[type="number"],
.expot-event-registration-form textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	color: var(--expot-text);
	background: #FFFFFF;
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.expot-form input[type="file"],
.expot-job-candidatura-form input[type="file"] {
	padding: 0.5rem;
}

/* Focus */
.expot-form input:focus,
.expot-form select:focus,
.expot-form textarea:focus,
.expot-form-wrapper .forminator-input:focus,
.expot-form-wrapper .forminator-textarea:focus,
.expot-form-wrapper .forminator-select:focus,
.expot-form-wrapper select:focus,
.expot-form-wrapper input:focus,
.expot-job-candidatura-form input:focus,
.expot-job-candidatura-form textarea:focus,
.expot-event-registration input:focus,
.expot-event-registration select:focus,
.expot-event-registration-form .forminator-input:focus,
.expot-event-registration-form .forminator-textarea:focus,
.expot-event-registration-form .forminator-select:focus,
.expot-event-registration-form select:focus,
.expot-event-registration-form input:focus {
	outline: none;
	border-color: var(--expot-blue) !important;
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1) !important;
}

/* Textarea */
.expot-form textarea,
.expot-form-wrapper .forminator-textarea,
.expot-job-candidatura-form textarea,
.expot-event-registration-form .forminator-textarea,
.expot-event-registration textarea {
	resize: vertical;
}

/* Form rows and groups */
.expot-form .expot-form-group,
.expot-form .expot-form-row,
.expot-job-candidatura-form .expot-form-row,
.expot-form-wrapper .forminator-row,
.expot-event-registration-form .forminator-row {
	margin-bottom: 1rem;
}

.expot-form .expot-form-row,
.expot-job-candidatura-form .expot-form-row,
.expot-form-wrapper .forminator-row,
.expot-event-registration-form .forminator-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.expot-form .expot-form-col,
.expot-form-wrapper .forminator-col,
.expot-event-registration-form .forminator-col,
.expot-form .expot-form-group {
	flex: 1;
	min-width: 200px;
	margin: 0;
}

/* Buttons */
.expot-form button[type="submit"]:not(.expot-btn),
.expot-form .button:not(.expot-btn),
.expot-form-wrapper .forminator-button,
.expot-form-wrapper .forminator-button-submit,
.expot-job-candidatura-form button[type="submit"]:not(.expot-btn),
.expot-event-registration button[type="submit"]:not(.expot-btn) {
	background: var(--expot-blue);
	color: #FFFFFF;
	border: none;
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.expot-form button[type="submit"]:not(.expot-btn):hover,
.expot-form .button:not(.expot-btn):hover,
.expot-form-wrapper .forminator-button:hover,
.expot-form-wrapper .forminator-button-submit:hover,
.expot-job-candidatura-form button[type="submit"]:not(.expot-btn):hover,
.expot-event-registration button[type="submit"]:not(.expot-btn):hover {
	background: var(--expot-blue-light);
	transform: translateY(-1px);
}

/* Compact loader on event registration submit button */
.forminator-button-submit.expot-loading {
	pointer-events: none;
	opacity: .85;
}

.expot-btn-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	vertical-align: middle;
	border: 2px solid rgba(255, 255, 255, .4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: expot-spin-btn .8s linear infinite;
}

@keyframes expot-spin-btn {
	to { transform: rotate(360deg); }
}

/* Forminator custom alignment fixes */
.expot-form-wrapper .forminator-row,
.expot-event-registration-form .forminator-row {
	margin-left: 0;
	margin-right: 0;
}

.expot-form-wrapper .forminator-col,
.expot-event-registration-form .forminator-col {
	padding-left: 0;
	padding-right: 0;
}

.expot-form-wrapper .forminator-description,
.expot-form-wrapper .forminator-error-message,
.expot-event-registration-form .forminator-description,
.expot-event-registration-form .forminator-error-message {
	font-size: 0.85rem;
}

.expot-form-wrapper .forminator-error-message,
.expot-event-registration-form .forminator-error-message {
	color: var(--expot-red);
}

.expot-form-wrapper .forminator-response-output,
.expot-event-registration-form .forminator-response-output,
.expot-form-wrapper .forminator-response-message,
.expot-event-registration-form .forminator-response-message {
	border-radius: 8px;
}

/* Category manager inline panel */
.expot-category-manager {
	background: var(--expot-white);
	border: 1px solid var(--expot-border);
	border-radius: 8px;
	padding: 1rem;
	margin-top: 0.75rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.expot-category-manager__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.expot-category-manager__header h4 {
	margin: 0;
	font-size: 1.1rem;
	color: var(--expot-blue);
}

.expot-category-manager__add {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.expot-category-manager__add input {
	flex: 1;
	margin-bottom: 0;
}

.expot-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 260px;
	overflow-y: auto;
}

.expot-category-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0.75rem;
	border-bottom: 1px solid var(--expot-border);
	gap: 0.75rem;
}

.expot-category-item:last-child {
	border-bottom: none;
}

.expot-category-name {
	flex: 1;
	font-size: 0.95rem;
}

.expot-category-edit-input {
	flex: 1;
	margin-bottom: 0;
}

.expot-category-actions {
	display: flex;
	gap: 0.25rem;
	flex-shrink: 0;
}

.expot-category-message {
	display: none;
	margin-top: 1rem;
}

.expot-btn-text {
	background: transparent;
	border: none;
	color: var(--expot-blue);
	padding: 0.25rem 0;
	margin-top: 0.25rem;
	font-size: 0.9rem;
}

.expot-btn-text:hover {
	color: var(--expot-red);
}

.expot-btn-small {
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
}

.expot-btn-icon {
	padding: 0.35rem;
	min-height: auto;
	line-height: 1;
}

.expot-btn-icon .dashicons {
	font-size: 1rem;
	width: auto;
	height: auto;
}

/* Slot selection pages */
.expot-slot-selection {
	padding: 6rem 1rem 10rem;
}

.expot-slot-selection-card {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.expot-slot-intro {
	margin-bottom: 1.5rem;
	color: #555;
}

.expot-slot-form {
	margin-top: 1.5rem;
}

.expot-slot-date-group {
	margin-bottom: 1.5rem;
}

.expot-slot-date-title {
	font-size: 1.1rem;
	color: var(--expot-blue);
	margin-bottom: 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--expot-border);
}

.expot-slot-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.expot-slot-option {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	background: #f8f9fa;
	border: 2px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.expot-slot-option:hover {
	background: #e9ecef;
	border-color: var(--expot-blue);
}

.expot-slot-option input[type="radio"],
.expot-slot-option input[type="checkbox"] {
	margin: 0;
	flex-shrink: 0;
}

.expot-slot-option-label {
	font-weight: 500;
}

.expot-slot-submit {
	margin-top: 1.5rem;
}

.expot-slot-switch-view {
	margin-top: 1.5rem;
	text-align: center;
}

.expot-slot-switch-view a {
	color: var(--expot-blue);
	text-decoration: underline;
}

.expot-slot-calendar {
	margin-bottom: 1.5rem;
}

.expot-slot-detail {
	margin-top: 1.5rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 6px;
}

.expot-slot-detail-title {
	margin-bottom: 1rem;
	color: var(--expot-blue);
}

/* Modal */
.expot-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.expot-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.expot-modal-content {
	position: relative;
	background: #fff;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	z-index: 1;
}

#expot-offer-modal .expot-modal-content {
	transform: translate(-50%, -50%);
		left: 50%;
		top: 50%;
}

.expot-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem;
	border-bottom: 1px solid var(--expot-border);
}

.expot-modal-header h2 {
	margin: 0;
	font-size: 1.25rem;
}

.expot-modal-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #666;
}

.expot-modal-body {
	padding: 1.25rem;
}

.expot-modal-candidate {
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--expot-blue);
}

.expot-modal-actions {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.expot-offer-slots-list {
	max-height: 400px;
	overflow-y: auto;
	padding-right: 0.5rem;
}

.expot-offer-date-group {
	margin-bottom: 1.25rem;
}

.expot-offer-date-group h4 {
	margin: 0 0 0.5rem;
	color: var(--expot-blue);
	font-size: 1rem;
}

.expot-status-badge {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 500;
}

.expot-status-offered {
	background: #fff3cd;
	color: #856404;
}

.expot-status-booked {
	background: #d4edda;
	color: #155724;
}

/* FullCalendar customizations */
.fc .fc-daygrid-day.fc-day-today {
	background: #e7f1ff;
}

.fc-event {
	cursor: pointer;
}

/* Slot manager calendar */
.expot-calendar-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.expot-slot-legend {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.expot-legend-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.expot-legend-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
}

.expot-legend-free {
	background: #28a745;
}

.expot-legend-offered {
	background: #ffc107;
}

.expot-legend-booked {
	background: #dc3545;
}

.expot-manage-slots .expot-slot-calendar {
	background: #fff;
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 1.5rem;
}

.expot-manual-form {
	margin-top: 1.5rem;
}

.expot-btn-danger {
	background: #dc3545;
	color: #fff;
}

.expot-btn-danger:hover {
	background: #c82333;
}

.expot-modal-small .expot-modal-content {
	max-width: 450px;
}

.fc-event {
	border: none !important;
	color: #fff !important;
	font-size: 0.85rem;
}

.fc-event.fc-event-past {
	opacity: 0.6;
}

.expot-calendar-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.expot-day-past {
	opacity: 0.5;
}

.expot-day-past .fc-daygrid-day-number {
	color: #aaa !important;
}

.expot-slot-candidate-info {
	background: #f8f9fa;
	border-left: 3px solid var(--expot-blue);
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	border-radius: 4px;
}

.expot-slot-candidate-info p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--expot-text);
}

@media (max-width: 768px) {
	.expot-modal-content {
		width: 95%;
		max-height: 95vh;
	}

	.expot-slot-selection-card {
		padding: 1.25rem;
	}

	.expot-calendar-toolbar {
		flex-direction: column;
		align-items: flex-start;
	}

	.expot-calendar-actions {
		width: 100%;
	}

	.expot-calendar-actions .expot-btn {
		flex: 1;
	}
}

.fc .fc-toolbar-title{
	padding: 0 30px;
	font-size:1.5rem;
}

/* Override GeneratePress default gray hover with Expo yellow */
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
a.button:hover,
button:focus,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
a.button:focus,
a.wp-block-button__link:not(.has-background):active,
a.wp-block-button__link:not(.has-background):focus,
a.wp-block-button__link:not(.has-background):hover {
	background-color: var(--espot-light-yellow) !important;
	color: var(--expot-text) !important;
}

/* ==========================================================================
   Notification Center
   ========================================================================== */

.expot-notification-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	margin-left: 8px;
	background-color: var(--expot-red);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 999px;
}

.expot-dashboard-notifications-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.expot-dashboard-notifications-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 15px;
	border-bottom: 1px solid var(--expot-border);
	font-size: 0.9rem;
}

.expot-dashboard-notifications-list li:last-child {
	border-bottom: none;
}

.expot-dashboard-notifications-list li .dashicons {
	color: var(--expot-blue-light);
	margin-top: 2px;
}

.expot-dashboard-notifications-list .expot-notification-summary {
	flex: 1;
	line-height: 1.4;
}

.expot-dashboard-notifications-list small {
	color: var(--expot-text-secondary);
	white-space: nowrap;
}

.expot-dashboard-notifications-list .expot-notification-item--unread .expot-notification-summary {
	font-weight: 600;
	color: var(--expot-blue);
}

.expot-notifications-page{
	padding: 3rem 1rem;
}

.expot-notifications-page .expot-notifications-actions {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
}

.expot-notifications-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.expot-notification-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px;
	margin-bottom: 12px;
	background-color: var(--expot-card-bg);
	border: 1px solid var(--expot-border);
	border-radius: var(--expot-radius);
	box-shadow: var(--expot-shadow);
}

.expot-notification-item--unread {
	border-left: 4px solid var(--expot-blue-light);
	background-color: #f8fafc;
}

.expot-notification-item--read {
	opacity: 0.85;
}

.expot-notification-icon .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
	color: var(--expot-blue-light);
}

.expot-notification-content {
	flex: 1;
}

.expot-notification-meta {
	display: flex;
	gap: 12px;
	margin-bottom: 6px;
	font-size: 0.85rem;
}

.expot-notification-type {
	font-weight: 600;
	color: var(--expot-blue);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.expot-notification-date {
	color: var(--expot-text-secondary);
}

.expot-notification-message {
	margin: 0;
	line-height: 1.5;
}

.expot-notification-message a {
	color: var(--expot-blue);
	text-decoration: underline;
}

.expot-notification-actions {
	display: flex;
	gap: 8px;
}

.expot-notification-actions .expot-btn-icon {
	padding: 6px 8px;
	min-height: auto;
}

/* ==========================================================================
   Single Event Page (Design v2)
   ========================================================================== */

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 24px;
	transition: color .15s;
}

.back-link:hover {
	color: var(--navy);
}

.event-hero {
	padding: 48px 0 10px;
}

.event-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 36px;
	align-items: start;
}

.event-cover {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	background: #eef3f9;
}

.event-cover img {
	width: 100%;
	height: auto;
	display: block;
}

.event-cover-placeholder {
	width: 100%;
	min-height: 200px;
	display: grid;
	place-items: center;
	color: #b0c4db;
}

.event-cover-expand {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	border: 0;
	background: none;
	cursor: zoom-in;
}

.event-cover-expand img {
	transition: transform .25s ease;
}

.event-cover-expand:hover img,
.event-cover-expand:focus img {
	transform: scale(1.02);
}

.expand-badge {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: 20px;
	background: rgba(255,255,255,.9);
	color: var(--blue, #0a4c95);
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(0,0,0,.18);
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .2s ease, transform .2s ease;
}

.event-cover-expand:hover .expand-badge,
.event-cover-expand:focus .expand-badge {
	opacity: 1;
	transform: none;
}

.event-organizer-bar {
	/* Eredita il layout .event-info (icona + label + valore) */
}

.events-grid .event-category {
	left:auto; right:14px;
}

.event-category {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 20px;
	border: 2px solid;
	background: white;
	color: var(--blue);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 14px;
}

.event-summary h1 {
	margin: 0 0 16px;
	color: var(--navy-dark);
	font-size: 34px;
	line-height: 1.2;
}

.event-intro {
	margin: 0 0 26px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.6;
}

.event-info-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.event-info {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--navy-dark);
}

.event-info svg {
	flex-shrink: 0;
	color: var(--blue);
}

.event-info strong {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 1px;
}

.event-info span {
	font-size: 15px;
}

.event-content-section {
	padding: 36px 0;
}

.event-content-grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 36px;
	align-items: start;
}

.event-description-card {
	padding: 30px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
}

.event-description-card h2 {
	margin: 0 0 16px;
	color: var(--navy-dark);
	font-size: 24px;
}

.event-description-card p,
.event-description-card li {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

.event-description-card p:last-child {
	margin-bottom: 0;
}

.availability-card {
	position: sticky;
	top: 120px;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fbfcfe;
}

.availability-card .status {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
	background: rgba(34, 197, 94, .12);
	color: #166534;
}

.availability-card .status.soldout {
	background: rgba(217, 35, 46, .1);
	color: #991B1B;
}

.availability-card .status.concluso {
	background: rgba(100, 116, 139, .12);
	color: #475569;
}

.availability-card h3 {
	margin: 16px 0 4px;
	color: var(--navy-dark);
	font-size: 22px;
}

.availability-card p {
	margin: 0 0 20px;
	color: var(--muted);
	font-size: 14px;
}

.availability-card .progress {
	height: 8px;
	border-radius: 10px;
	background: #e5eef9;
	overflow: hidden;
	margin-bottom: 10px;
}

.availability-card .progress span {
	display: block;
	height: 100%;
	border-radius: 10px;
	transition: width .3s;
}

.availability-card .seat-count {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: var(--muted);
}

/* Gate card (ticket question) */
.registration-section {
	padding: 24px 0 80px;
}

.gate-card {
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--shadow);
}

.gate-header {
	padding: 30px;
	text-align: center;
	background: linear-gradient(180deg,#f8fbff,#fff);
	border-bottom: 1px solid var(--border);
}

.gate-icon {
	width: 66px;
	height: 66px;
	display: grid;
	place-items: center;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: #edf4fb;
	color: var(--navy);
}

.gate-header h2 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 30px;
}

.gate-header p {
	max-width: 680px;
	margin: 10px auto 0;
	color: var(--muted);
	font-size: 15px;
}

.gate-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	padding: 28px;
}

.choice-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 28px 24px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.choice-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(7,43,87,.09);
}

.choice-card.primary {
	border-color: #bcd3ea;
	background: #f7fbff;
}

.choice-card.warning {
	border-color: #f0d57b;
	background: #fffaf0;
}

.choice-card h3 {
	margin: 14px 0 7px;
	color: var(--navy-dark);
	font-size: 20px;
}

.choice-card p {
	margin: 0 0 20px;
	color: var(--muted);
	font-size: 14px;
}

.choice-card .button {
	margin-top: auto;
}

.registration-panel {
	display: none;
	padding: 30px;
	border-top: 1px solid var(--border);
	background: #fbfcfe;
	animation: reveal .25s ease;
}

.registration-panel.active {
	display: block;
}

.form-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 26px;
}

.form-heading h3 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 25px;
}

.form-heading p {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.close-panel {
	border: 0;
	background: transparent;
	color: var(--muted);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.close-panel:hover {
	color: var(--navy-dark);
}

/* Forminator overrides inside registration panel */
.registration-panel .expot-event-registration-form .forminator-label {
	display: block;
	margin-bottom: 8px;
	color: var(--navy-dark);
	font-size: 13px;
	font-weight: 800;
}

.registration-panel .expot-event-registration-form .forminator-input,
.registration-panel .expot-event-registration-form input[type="text"],
.registration-panel .expot-event-registration-form input[type="email"],
.registration-panel .expot-event-registration-form input[type="tel"] {
	width: 100%;
	min-height: 49px;
	padding: 11px 13px;
	border: 1px solid #cfd9e5;
	border-radius: 9px;
	background: #fff;
	outline: none;
}

.registration-panel .expot-event-registration-form .forminator-input:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(11,102,195,.10);
}

.registration-panel .expot-event-registration-form .forminator-checkbox__wrapper {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 21px 0;
	color: #536074;
	font-size: 13px;
}

.redirect-panel {
	display: none;
	padding: 30px;
	border-top: 1px solid var(--border);
	background: var(--yellow-soft);
	text-align: center;
	animation: reveal .25s ease;
}

.redirect-panel.active {
	display: block;
}

.redirect-panel h3 {
	margin: 0;
	color: #594600;
	font-size: 24px;
}

.redirect-panel p {
	max-width: 650px;
	margin: 10px auto 20px;
	color: #715b12;
	font-size: 14px;
}

@keyframes reveal {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 980px) {
	.event-top,
	.event-content-grid {
		grid-template-columns: 1fr;
	}

	.availability-card {
		position: static;
	}

	.event-cover {
		position: relative;
	}

	.event-summary h1 {
		font-size: 28px;
	}
}

@media (max-width: 700px) {
	.event-hero {
		padding: 32px 0 10px;
	}

	.gate-actions,
	.registration-panel .expot-event-registration-form .forminator-row {
		grid-template-columns: 1fr;
	}

	.gate-header,
	.gate-actions,
	.registration-panel,
	.redirect-panel {
		padding: 22px 18px;
	}

	.event-description-card {
		padding: 22px;
	}

	.gate-header h2 {
		font-size: 24px;
	}

	.choice-card .button {
		width: 100%;
	}
}

/* ==========================================================================
   Offerte di Lavoro Archive (Design v2)
   ========================================================================== */

.filters-section {
	padding: 32px 0 16px;
}

.filters-panel {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(7,43,87,.05);
}

.filters-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.filters-heading h2 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 21px;
}

.results-count {
	color: var(--muted);
	font-size: 14px;
	white-space: nowrap;
}

.filters-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr auto auto;
	gap: 14px;
	align-items: end;
}

.filters-grid .field label {
	display: block;
	margin-bottom: 7px;
	color: var(--navy-dark);
	font-size: 13px;
	font-weight: 800;
}

.filters-grid .field input,
.filters-grid .field select {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #cfd9e5;
	border-radius: 9px;
	background: #fff;
	outline: none;
	color: var(--text);
}

.filters-grid .field input:focus,
.filters-grid .field select:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(11,102,195,.10);
}

.filters-grid .button {
	white-space: nowrap;
}

.quick-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 18px;
}

.quick-categories .chip {
	min-height: 36px;
	padding: 0 14px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: #f9fbfd;
	color: #34445a;
	font-size: 12px;
	font-weight: 800;
	transition: background .15s, border-color .15s;
}

.quick-categories .chip.active {
	background: var(--yellow-soft);
	border-color: var(--yellow);
	color: #584400;
}

.jobs-section {
	padding: 24px 0 82px;
}

.jobs-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.jobs-toolbar h2 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 24px;
}

.sort-select {
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid var(--border);
	border-radius: 9px;
	background: #fff;
	color: #34445a;
}

.jobs-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.job-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}

.job-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(7,43,87,.13);
}

.job-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.company-logo {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: #edf4fb;
	color: var(--navy);
	font-size: 18px;
	font-weight: 900;
	flex: 0 0 auto;
	overflow: hidden;
}

.job-company {
	flex: 1;
	min-width: 0;
}

.job-company span {
	display: block;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.job-company strong {
	display: block;
	margin-top: 2px;
	color: #26354a;
	font-size: 14px;
}

.job-card h3 {
	margin: 21px 0 8px;
	color: var(--navy-dark);
	font-size: 22px;
	line-height: 1.25;
}

.job-card h3 a {
	color: inherit;
	text-decoration: none;
}

.job-card h3 a:hover {
	color: var(--blue);
}

.job-meta {
	margin-bottom: 0;
	margin-top: 20px;
}

.job-meta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.job-meta-group + .job-meta-group {
	margin-top: 12px;
}

.job-meta .tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: #edf4fb;
	color: var(--navy);
	font-size: 11px;
	font-weight: 900;
	white-space: nowrap;
}

.job-meta .tag.category {
	background: var(--red-soft);
	color: var(--red);
}

.job-meta .tag.salary {
	background: var(--green-soft);
	color: var(--green);
}

.job-description {
	margin: 0;
	color: #5b6678;
	font-size: 14px;
	line-height: 1.65;
}

.job-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	padding-top: 22px;
}

.job-footer .published {
	color: var(--muted);
	font-size: 11px;
	white-space: nowrap;
}

.empty-state {
	display: none;
	padding: 50px 30px;
	border: 1px dashed #cfd9e5;
	border-radius: 18px;
	background: #fff;
	text-align: center;
	color: var(--muted);
}

.empty-state.show {
	display: block;
}

.empty-state h3 {
	margin: 0 0 8px;
	color: var(--navy-dark);
	font-size: 21px;
}

.empty-state p {
	margin: 0;
	font-size: 15px;
}

@media (max-width: 1050px) {
	.filters-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.filters-grid .button {
		width: 100%;
	}

	.jobs-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.filters-heading,
	.jobs-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.filters-grid {
		grid-template-columns: 1fr;
	}

	.jobs-grid {
		grid-template-columns: 1fr;
	}

	.job-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.filters-grid .button {
		width: 100%;
	}
}

/* ==========================================================================
   Single Job Listing (Design v2)
   ========================================================================== */

.job-hero {
	padding: 54px 0 34px;
	background:
		radial-gradient(circle at 88% 10%, rgba(244,196,61,.18), transparent 28%),
		linear-gradient(180deg, #fff, #f8fafc);
	border-bottom: 1px solid var(--border);
}

.job-hero .back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 26px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 800;
}

.job-hero-grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 38px;
	align-items: start;
}

.company-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.company-row .company-logo {
	width: 64px;
	height: 64px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: #edf4fb;
	color: var(--navy);
	font-size: 22px;
	font-weight: 900;
	flex: 0 0 auto;
	overflow: hidden;
}

.company-row strong {
	display: block;
	color: var(--navy-dark);
	font-size: 17px;
}

.job-hero .category {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 11px;
	border-radius: 999px;
	background: var(--red-soft);
	color: var(--red);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.job-hero h1 {
	margin: 16px 0 12px;
	color: var(--navy-dark);
	font-size: clamp(36px, 5vw, 58px);
	line-height: 1.04;
	letter-spacing: -2px;
}

.job-hero p {
	max-width: 760px;
	margin: 0;
	color: var(--muted);
	font-size: 17px;
}

.job-summary {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow);
}

.summary-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 13px 0;
	border-bottom: 1px solid var(--border);
}

.summary-item:last-child {
	border-bottom: 0;
}

.summary-item svg {
	color: var(--navy);
	flex: 0 0 auto;
	margin-top: 2px;
}

.summary-item strong {
	display: block;
	color: var(--navy-dark);
	font-size: 13px;
}

.summary-item span {
	display: block;
	margin-top: 2px;
	color: var(--muted);
	font-size: 13px;
}

.job-content-section {
	padding: 40px 0 28px;
}

.job-content-grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 34px;
	align-items: start;
}

.content-card,
.apply-card {
	border: 1px solid var(--border);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 25px rgba(7,43,87,.05);
}

.content-card {
	padding: 32px;
}

.content-card h2 {
	margin: 0 0 15px;
	color: var(--navy-dark);
	font-size: 27px;
}

.content-card h3 {
	margin: 30px 0 10px;
	color: var(--navy-dark);
	font-size: 20px;
}

.content-card p {
	margin: 0;
	color: #596579;
	font-size: 15px;
	line-height: 1.75;
}

.content-card p:last-child {
	margin-bottom: 0;
}

.content-card ul {
	margin: 12px 0 0;
	padding-left: 20px;
	color: #596579;
	font-size: 15px;
	line-height: 1.75;
}

.job-description-content {
	white-space: pre-line;
}

.apply-card {
	position: sticky;
	top: 108px;
	padding: 24px;
}

.apply-card h3 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 22px;
}

.apply-card p {
	margin: 8px 0 20px;
	color: var(--muted);
	font-size: 13px;
}

.apply-card .button {
	width: 100%;
}

.application-section {
	padding: 22px 0 82px;
}

.application-card {
	display: none;
	padding: 32px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--shadow);
	animation: reveal .25s ease;
}

.application-card.active {
	display: block;
}

/* Restyle existing candidatura form inside application card */
.application-card .expot-job-candidatura-form {
	background: none;
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 0;
	box-shadow: none;
}

.application-card .expot-job-candidatura-form h3 {
	margin: 0 0 8px;
	color: var(--navy-dark);
	font-size: 28px;
}

.application-card .expot-candidatura-intro {
	margin: 7px 0 26px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--border);
	color: var(--muted);
	font-size: 14px;
}

.application-card .expot-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 24px;
	margin: 0 0 20px;
}

.application-card .expot-form-col {
	margin: 0;
	padding: 0;
}

.application-card .expot-form-col label {
	display: block;
	margin-bottom: 8px;
	color: var(--navy-dark);
	font-size: 13px;
	font-weight: 800;
}

.application-card .expot-form-col .required {
	color: var(--red);
}

.application-card input[type="text"],
.application-card input[type="email"],
.application-card input[type="tel"],
.application-card input[type="file"],
.application-card textarea {
	width: 100%;
	min-height: 49px;
	padding: 11px 13px;
	border: 1px solid #cfd9e5;
	border-radius: 9px;
	background: #fff;
	outline: none;
	color: var(--text);
}

.application-card input:focus,
.application-card textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(11,102,195,.10);
}

.application-card textarea {
	min-height: 150px;
	resize: vertical;
}

.application-card input[type="file"] {
	padding: 10px 13px;
}

/* Privacy checkbox row */
.application-card .expot-candidatura-privacy,
.application-card p:has(input[type="checkbox"]) {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 22px 0;
	color: #536074;
	font-size: 13px;
}

.application-card input[type="checkbox"] {
	margin-top: 2px;
	flex-shrink: 0;
}

.application-card button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: 10px;
	background: var(--navy);
	color: #fff;
	font-weight: 900;
	font-size: 14px;
	transition: transform .15s ease;
	cursor: pointer;
}

.application-card button[type="submit"]:hover {
	transform: translateY(-1px);
	background: var(--blue);
}

/* Notices inside application card */
.application-card .expot-notice {
	padding: 16px 20px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 14px;
}

.application-card .expot-notice-success {
	background: var(--green-soft);
	color: var(--green);
	border: 1px solid rgba(24,134,83,.3);
}

.application-card .expot-notice-error {
	background: var(--red-soft);
	color: var(--red);
	border: 1px solid rgba(214,69,69,.3);
}

.application-card .expot-notice p {
	margin: 0;
}

@media (max-width: 980px) {
	.job-hero-grid,
	.job-content-grid {
		grid-template-columns: 1fr;
	}

	.apply-card {
		position: static;
	}
}

@media (max-width: 700px) {
	.job-hero {
		padding: 42px 0 28px;
	}

	.application-card .expot-form-row {
		grid-template-columns: 1fr;
	}

	.application-card,
	.content-card {
		padding: 22px 18px;
	}

	.application-card .button {
		width: 100%;
	}
}

/* ==========================================================================
   Dashboard Sub-navigation (shared across exhibitor sub-pages)
   ========================================================================== */

.dashboard-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: #f6f8fb;
	color: #fff;
	background: var(--navy);
}

.dashboard-nav-inner {
	min-height: 54px;
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	background: var(--navy);
	max-width:1200px;
	margin: auto		;
	box-shadow: 0 8px 24px rgba(2, 43, 87, .16);
}

.dashboard-nav-inner::-webkit-scrollbar {
	display: none;
}

.dashboard-nav a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 13px;
	border-radius: 9px;
	white-space: nowrap;
	color: rgba(255,255,255,.82);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
	background: rgba(255,255,255,.13);
	color: #fff;
}

.dashboard-nav .logout {
	margin-left: auto;
	color: #ffd7d7;
}

/* Page Hero (shared) */
.page-hero {
	padding: 42px 0 24px;
	background:
		radial-gradient(circle at 88% 8%, rgba(244,196,61,.18), transparent 28%),
		linear-gradient(180deg, #fff, #f7f9fc);
	border-bottom: 1px solid var(--border);
}

.hero-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.page-hero h1 {
	margin: 0;
	color: var(--navy-dark);
	font-size: clamp(34px, 4.3vw, 52px);
	line-height: 1.05;
	letter-spacing: -1.5px;
}

.page-hero p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 16px;
}

.page-main {
	padding: 28px 0 78px;
}

/* Calendar shell (gestisci fasce) */
.calendar-shell {
	border: 1px solid var(--border);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 28px;
	border-bottom: 1px solid var(--border);
	background: #fbfcfe;
}

.calendar-header h2 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 22px;
}

.calendar-header p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.legend {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #536074;
	font-size: 12px;
	font-weight: 800;
}

.legend-dot {
	width: 10px; height: 10px;
	border-radius: 50%;
}

.legend-dot.free {
	background: var(--green);
}

.legend-dot.offered {
	background: var(--orange);
}

.legend-dot.booked {
	background: var(--red);
}

.calendar-content {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 24px;
	padding: 28px;
	align-items: flex-start;
}

.date-selector {
	display: grid;
	gap: 14px;
}

.date-card {
	position: relative;
}

.date-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.date-card label {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: 15px;
	background: #fff;
	cursor: pointer;
	transition: .15s ease;
}

.date-card label strong {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: #edf4fb;
	color: var(--navy);
	font-size: 28px;
}

.date-card label span {
	display: block;
	color: var(--navy-dark);
	font-size: 15px;
	font-weight: 900;
}

.date-card label small {
	display: block;
	margin-top: 3px;
	color: var(--muted);
	font-size: 12px;
}

.date-card input:checked + label {
	border-color: var(--navy);
	background: #f4f8fc;
	box-shadow: 0 0 0 3px rgba(6,59,115,.08);
}

.date-help {
	padding: 15px;
	border-radius: 12px;
	background: var(--yellow-soft);
	color: #6d5600;
	font-size: 12px;
}

.day-panel {
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
}

.day-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 22px;
	border-bottom: 1px solid var(--border);
	background: #fbfcfe;
}

.day-panel-header h3 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 20px;
}

.day-panel-header span {
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 22px;
}

.slot {
	position: relative;
}

.slot input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.slot label {
	display: block;
	min-height: 88px;
	padding: 14px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: .15s ease;
}

.slot label strong {
	display: block;
	color: var(--navy-dark);
	font-size: 15px;
}

.slot label span {
	display: flex;
	margin-top: 0!important;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	font-size: 11px;
	font-weight: 900;
}

.slot label span::before {
	content: "";
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--green);
}

.slot-candidate {
	display: block;
	margin-top: 6px;
	font-size: 11px;
	color: var(--muted);
	font-weight: 600;
}

.slot input:checked + label {
	border-color: var(--navy);
	background: #f3f8fd;
	box-shadow: 0 0 0 3px rgba(6,59,115,.08);
}

.slot.offered label {
	background: var(--orange-soft);
	border-color: #f0ca77;
	cursor: default;
}

.slot.offered label span {
	color: var(--orange);
}

.slot.offered label span::before {
	background: var(--orange);
}

.slot.booked label {
	background: var(--red-soft);
	border-color: #efbbbb;
	cursor: default;
}

.slot.booked label span {
	color: var(--red);
}

.slot.booked label span::before {
	background: var(--red);
}

.calendar-actions {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 24px 28px;
	border-top: 1px solid var(--border);
	background: #fbfcfe;
}

#candidature {
	margin-top: 48px;
}

.expot-card-actions {
	display: flex;
	justify-content: flex-start;
	gap: 14px;
	padding: 24px 28px 0;
	border-top: 1px solid var(--border);
}

/* Modal variant: form modal (left-aligned) */
.modal.form-modal {
	position: relative;
	text-align: left;
	width: min(100%, 520px);
}

.modal.form-modal .modal-actions {
	justify-content: flex-end;
}

.modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.modal-header h3 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 25px;
}

.modal-header p {
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.field select {
	width: 100%;
	min-height: 49px;
	padding: 11px 13px;
	border: 1px solid #cfd9e5;
	border-radius: 9px;
	background: #fff;
	color: var(--text);
	outline: none;
}

.field select:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(11,102,195,.10);
}

/* Table Card */
.table-card {
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow);
}

.table-wrap {
	overflow-x: auto;
}

.table-card table {
	width: 100%;
	border-collapse: collapse;
	min-width: 760px;
}

.table-card th,
.table-card td {
	padding: 18px 20px;
	text-align: left;
	border-bottom: 1px solid var(--border);
	vertical-align: middle;
}

.table-card th {
	background: #f7f9fc;
	color: var(--navy-dark);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.table-card td {
	color: #536074;
	font-size: 13px;
}

.table-card tbody tr:last-child td {
	border-bottom: 0;
}

.table-card tbody tr:hover {
	background: #fbfcfe;
}

.announcement-title {
	color: var(--navy-dark);
	font-size: 15px;
	font-weight: 900;
}

.status {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
}

.status-published {
	background: var(--green-soft);
	color: var(--green);
}

.status-draft {
	background: #fff5dd;
	color: #d58a00;
}

.applications {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--navy);
	font-weight: 900;
	text-decoration: none;
}

.actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.mini-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 13px;
	border: 1px solid var(--navy);
	border-radius: 9px;
	background: #fff;
	color: var(--navy);
	font-size: 11px;
	font-weight: 900;
	text-decoration: none;
}

.mini-button.primary {
	background: var(--navy);
	color: #fff;
}

.mini-button.danger {
	background: var(--red-soft);
	border-color: var(--red);
	color: var(--red);
}

.mini-button.danger:hover {
	background: var(--red);
	color: #fff;
}

/* Form Shell (shared for scheda azienda, crea annuncio, crea evento) */
.form-shell {
	border: 1px solid var(--border);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.form-shell-header {
	padding: 24px 28px;
	border-bottom: 1px solid var(--border);
	background: #fbfcfe;
}

.form-shell-header h2 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 22px;
}

.form-shell-header p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.form-layout {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 24px;
	padding: 28px;
}

.form-card {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
}

.form-card h3 {
	margin: 0 0 20px;
	color: var(--navy-dark);
	font-size: 18px;
}

/* Fields inside form-shell */
.form-shell .field {
	margin-bottom: 19px;
}

.form-shell .field:last-child {
	margin-bottom: 0;
}

.form-shell .field label {
	display: block;
	margin-bottom: 8px;
	color: var(--navy-dark);
	font-size: 13px;
	font-weight: 800;
}

.form-shell .field input,
.form-shell .field select,
.form-shell .field textarea {
	width: 100%;
	min-height: 49px;
	padding: 11px 13px;
	border: 1px solid #cfd9e5;
	border-radius: 9px;
	background: #fff;
	color: var(--text);
	outline: none;
	box-sizing: border-box;
}

.form-shell .field textarea {
	min-height: 190px;
	resize: vertical;
}

.form-shell .field input:focus,
.form-shell .field select:focus,
.form-shell .field textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(11,102,195,.10);
}

.form-shell .field small {
	display: block;
	margin-top: 7px;
	color: var(--muted);
	font-size: 12px;
}

/* Logo upload */
.logo-upload {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 16px;
	align-items: center;
	padding: 16px;
	border: 1px dashed #bdc9d7;
	border-radius: 12px;
	background: #fbfcfe;
}

.logo-preview {
	width: 90px;
	height: 90px;
	display: grid;
	place-items: center;
	overflow: hidden;
	border-radius: 14px;
	background: #edf4fb;
	color: var(--navy);
	font-size: 26px;
	font-weight: 900;
}

.logo-preview img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
	background: #fff;
}

/* Social */
.social-list {
	display: grid;
	gap: 12px;
}

.social-row {
	display: grid;
	grid-template-columns: 180px 1fr auto;
	gap: 10px;
	align-items: center;
}

.icon-button {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid #efbbbb;
	border-radius: 9px;
	background: #fff0f0;
	color: #d64545;
	font-size: 20px;
	cursor: pointer;
}

/* Actions bar at bottom of form */
.actions-bar {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 24px 28px;
	border-top: 1px solid var(--border);
	background: #fbfcfe;
}

/* Category grid (chips) */
.category-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.category-option {
	position: relative;
}

.category-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.category-option label {
	display: flex;
	align-items: center;
	min-height: 44px;
	margin: 0;
	padding: 0 13px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: #f9fbfd;
	color: #425067;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.category-option input:checked + label,
.category-option input:checked + label {
	background: var(--yellow-soft);
	border-color: var(--yellow);
	color: #5b4600;
}

.event-create-form.form-shell .category-option label,
.crea-annuncio.form-shell .category-option label		{
	display: flex;
	justify-content: center;
	text-align: center;
}

.event-create-form button[type="submit"] {
	background: var(--navy);
	color: #fff;
}

.event-create-form button[type="submit"]:disabled,
.event-create-form button[type="submit"]:disabled:hover {
	background: var(--navy);
	color: #fff;
	opacity: .7;
	cursor: not-allowed;
}

/* Two-column inline */
.two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

/* Info note */
.info-note {
	padding: 14px 15px;
	border-radius: 11px;
	background: #f7f9fc;
	color: var(--muted);
	font-size: 12px;
}

/* Status radio cards */
.status-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.status-option {
	position: relative;
}

.status-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.status-option label {
	display: block;
	margin: 0;
	padding: 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
}

.status-option label strong {
	display: block;
	color: var(--navy-dark);
	font-size: 14px;
}

.status-option label span {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 11px;
}

.status-option input:checked + label {
	border-color: var(--navy);
	background: #f3f8fd;
	box-shadow: 0 0 0 3px rgba(6,59,115,.08);
}

/* Time row (inline HH:MM selects) */
.time-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.time-row select {
	flex: 1;
	min-height: 49px;
	padding: 11px 13px;
	border: 1px solid #cfd9e5;
	border-radius: 9px;
	background: #fff;
	color: var(--text);
	outline: none;
}

.time-row span {
	color: var(--muted);
	font-weight: 700;
}

@media (max-width: 980px) {
	.form-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.hero-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero-row .button {
		width: 100%;
	}

	.table-card {
		border-radius: 14px;
	}

	.form-layout,
	.form-card,
	.form-shell-header,
	.actions-bar {
		padding-left: 18px;
		padding-right: 18px;
	}

	.category-grid,
	.two-columns,
	.status-options,
	.time-row {
		grid-template-columns: 1fr;
	}

	.social-row {
		grid-template-columns: 1fr;
	}

	.icon-button {
		width: 100%;
	}

	.actions-bar {
		flex-direction: column-reverse;
	}

	.actions-bar .button {
		width: 100%;
	}
}

/* ==========================================================================
   Accesso Espositori / Login + Register (Design v2)
   ========================================================================== */

.access-section {
	min-height: calc(100vh - 82px);
	padding: 54px 0 78px;
	background:
		radial-gradient(circle at 85% 10%, rgba(244,196,61,.18), transparent 26%),
		radial-gradient(circle at 10% 88%, rgba(11,102,195,.11), transparent 30%),
		linear-gradient(180deg, #fff, #f5f8fb);
}

.access-grid {
	display: grid;
	grid-template-columns: 1fr 500px;
	gap: 56px;
	align-items: center;
}

.access-intro .eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding: 7px 12px;
	border: 1px solid rgba(6,59,115,.12);
	border-radius: 999px;
	background: rgba(255,255,255,.75);
	color: var(--navy);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.access-intro h1 {
	margin: 0;
	color: var(--navy-dark);
	font-size: clamp(42px, 5.6vw, 66px);
	line-height: 1.02;
	letter-spacing: -2.2px;
}

.access-intro p {
	max-width: 660px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 17px;
}

.benefits {
	display: grid;
	gap: 14px;
	margin: 30px 0 0;
}

.benefit {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 17px 18px;
	border: 1px solid rgba(6,59,115,.08);
	border-radius: 14px;
	background: rgba(255,255,255,.72);
}

.benefit-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: #edf4fb;
	color: var(--navy);
	flex: 0 0 auto;
}

.benefit strong {
	display: block;
	color: var(--navy-dark);
	font-size: 15px;
}

.benefit span {
	display: block;
	margin-top: 3px;
	color: var(--muted);
	font-size: 13px;
}

/* Card */
.access-card {
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
}

.access-card-header {
	padding: 29px 30px 22px;
	text-align: center;
	border-bottom: 1px solid var(--border);
	background: linear-gradient(180deg, #fbfdff, #fff);
}

.access-card-icon {
	width: 64px;
	height: 64px;
	display: grid;
	place-items: center;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: #edf4fb;
	color: var(--navy);
}

.access-card-header h2 {
	margin: 0;
	color: var(--navy-dark);
	font-size: 29px;
}

.access-card-header p {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 12px;
	background: #f7f9fc;
	border-bottom: 1px solid var(--border);
}

.tab {
	min-height: 44px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: var(--muted);
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

.tab.active {
	background: #fff;
	color: var(--navy);
	box-shadow: 0 5px 16px rgba(7,43,87,.08);
}

.panel {
	display: none;
	padding: 28px 30px 30px;
	animation: reveal .22s ease;
}

.panel.active {
	display: block;
}

@keyframes reveal {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.field {
	margin-bottom: 18px;
}

.field label {
	display: block;
	margin-bottom: 8px;
	color: var(--navy-dark);
	font-size: 13px;
	font-weight: 800;
}

.input-wrap {
	position: relative;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="password"] {
	width: 100%;
	min-height: 50px;
	padding: 11px 44px 11px 13px;
	border: 1px solid #cfd9e5;
	border-radius: 9px;
	background: #fff;
	color: var(--text);
	outline: none;
	box-sizing: border-box;
}

.field input:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(11,102,195,.10);
}

.input-icon {
	position: absolute;
	top: 50%;
	right: 13px;
	transform: translateY(-50%);
	color: #8792a3;
	pointer-events: none;
}

.password-toggle {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border: 0;
	background: transparent;
	color: #8792a3;
	cursor: pointer;
}

.form-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 2px 0 21px;
}

.remember {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #536074;
	font-size: 13px;
}

.forgot-link {
	color: var(--blue);
	font-size: 13px;
	font-weight: 700;
	border: 0;
	background: none;
	cursor: pointer;
}

.access-card .button {
	min-height: 50px;
	padding: 0 20px;
}

.button-full {
	width: 100%;
}

.panel-note {
	margin: 19px 0 0;
	padding: 14px;
	border-radius: 10px;
	background: #f7f9fc;
	color: var(--muted);
	font-size: 12px;
	text-align: center;
}

.panel-note a {
	color: var(--blue);
	font-weight: 800;
}

.notice-box {
	display: none;
	margin-bottom: 17px;
	padding: 13px 14px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
}

.notice-box.show {
	display: block;
}

.error-box {
	background: var(--red-soft);
	color: var(--red);
}

.success-box {
	background: var(--green-soft);
	color: var(--green);
}

/* Room availability grid & checker on event creation */
.expot-availability-card {
	grid-column: 1 / -1;
	margin-top: 10px;
}

.expot-availability-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.expot-availability-header h3 {
	margin: 0;
	font-size: 20px;
}

.expot-availability-legend {
	display: flex;
	gap: 16px;
	margin: 0;
	font-size: 13px;
	font-weight: 700;
}

.expot-availability-legend span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.expot-availability-legend span::before {
	content: '';
	width: 12px;
	height: 12px;
	border-radius: 3px;
	border: 1px solid rgba(0,0,0,.08);
}

.expot-legend-free::before {
	background: var(--green-soft);
}

.expot-legend-occupied::before {
	background: var(--red-soft);
}

.expot-grid-day-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
	border-bottom: 2px solid #e9ecef;
	padding-bottom: 2px;
}

.expot-grid-day-tab {
	background: transparent;
	border: none;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 700;
	color: var(--text-light);
	cursor: pointer;
	border-bottom: 3px solid transparent;
	margin-bottom: -5px;
	transition: color .2s, border-color .2s;
}

.expot-grid-day-tab.active,
.expot-grid-day-tab:hover {
	color: var(--blue);
	border-bottom-color: var(--blue);
}

.expot-grid-day-panel {
	display: none;
}

.expot-grid-day-panel.active {
	display: block;
}

.expot-availability-table-wrap {
	overflow-x: auto;
	border: 1px solid #e9ecef;
	border-radius: 10px;
}

.expot-availability-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	min-width: 680px;
}

.expot-availability-table th,
.expot-availability-table td {
	border: 1px solid #e9ecef;
	padding: 8px 6px;
	text-align: center;
	vertical-align: middle;
}

.expot-availability-table thead th {
	background: #f8f9fa;
	font-weight: 700;
	white-space: nowrap;
}

.expot-availability-table thead th small {
	display: block;
	font-weight: 400;
	font-size: 11px;
	color: var(--text-light);
}

.expot-availability-table tbody th {
	background: #f8f9fa;
	font-weight: 700;
	white-space: nowrap;
}

.expot-availability-table .expot-cell-free {
	background: var(--green-soft);
	color: var(--green);
}

.expot-availability-table .expot-cell-occupied {
	background: var(--red-soft);
	color: var(--red);
	font-weight: 700;
}

.expot-availability-table .expot-cell-occupied a {
	color: inherit;
	text-decoration: underline;
}

.expot-availability-table .expot-cell-occupied a:hover {
	text-decoration: none;
}

.expot-availability-result {
	margin-top: 14px;
}

.expot-availability-notice {
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 14px;
	margin-bottom: 10px;
}

.expot-availability-notice h4 {
	margin: 0 0 6px;
	font-size: 14px;
}

.expot-availability-notice p {
	margin: 0;
}

.expot-availability-notice ul {
	margin: 6px 0 0;
	padding-left: 18px;
}

.expot-availability-notice li {
	margin-bottom: 3px;
}

.expot-availability-free {
	background: var(--green-soft);
	color: var(--green);
	border-left: 4px solid var(--green);
}

.expot-availability-occupied {
	background: var(--red-soft);
	color: var(--red);
	border-left: 4px solid var(--red);
}

.expot-availability-error {
	background: var(--red-soft);
	color: var(--red);
	border-left: 4px solid var(--red);
}

#expotCheckAvailability {
	margin-top: 4px;
}

/* Modal color variants for access page */
.modal-icon-yellow {
	background: var(--yellow-soft);
	color: #9a7400;
}

.modal-icon-green {
	background: var(--green-soft);
	color: var(--green);
}

.modal .field {
	text-align: left;
}

@media (max-width: 980px) {
	.access-grid {
		grid-template-columns: 1fr;
	}

	.access-intro .benefits {
		display: none;
	}

	.calendar-content {
		grid-template-columns: 1fr;
	}

	.date-selector {
		grid-template-columns: 1fr 1fr;
	}

	.date-help {
		grid-column: 1 / -1;
	}

	.slots-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 700px) {
	.access-section {
		padding: 44px 0 62px;
	}

	.access-card-header,
	.panel {
		padding-left: 20px;
		padding-right: 20px;
	}

	.calendar-header,
	.day-panel-header,
	.calendar-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.calendar-content,
	.calendar-header,
	.calendar-actions {
		padding-left: 18px;
		padding-right: 18px;
	}

	.date-selector,
	.slots-grid,
	.two-columns {
		grid-template-columns: 1fr;
	}

	.modal-actions {
		flex-direction: column-reverse;
	}

	.form-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.modal-actions .button {
		width: 100%;
	}
}

/* ==========================================================================
   Footer — ExpoTraining
   ========================================================================== */
.et-footer{
	--et-bg:#0f1b2d;
	--et-bg-darker:#0a131f;
	--et-text:#c9d2de;
	--et-text-strong:#ffffff;
	--et-accent:#e2574c;
	--et-border:rgba(255,255,255,.08);
	background:var(--et-bg);
	color:var(--et-text);
	font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
	font-size:15px;
	line-height:1.6;
}
.et-footer__inner{
	max-width:1180px;
	margin:0 auto;
	padding:64px 24px 40px;
	display:grid;
	grid-template-columns:1.6fr 1fr 1fr;
	gap:40px;
}
.et-footer__logo{
	max-width:190px;
	height:auto;
	margin-bottom:18px;
}
.et-footer__claim{
	max-width:340px;
	color:var(--et-text);
	margin:0;
}
.et-footer__title{
	color:var(--et-text-strong);
	font-size:15px;
	font-weight:700;
	letter-spacing:.02em;
	margin:0 0 18px;
}
.et-footer__list{
	list-style:none;
	margin:0;
	padding:0;
}
.et-footer__list li{
	margin-bottom:10px;
}
.et-footer__list a{
	color:var(--et-text);
	text-decoration:none;
	transition:color .15s ease;
}
.et-footer__list a:hover,
.et-footer__list a:focus-visible{
	color:var(--et-accent);
}
.et-footer__bottom{
	border-top:1px solid var(--et-border);
	background:var(--et-bg-darker);
	padding:20px 24px;
	max-width:1180px;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	font-size:13.5px;
}
.et-footer__bottom p{
	margin:0;
	color:#8a95a6;
}
.et-footer__legal{
	list-style:none;
	display:flex;
	gap:22px;
	margin:0;
	padding:0;
}
.et-footer__legal a{
	color:#8a95a6;
	text-decoration:none;
}
.et-footer__legal a:hover,
.et-footer__legal a:focus-visible{
	color:var(--et-text-strong);
}

@media (max-width: 900px){
	.et-footer__inner{
		grid-template-columns:1fr 1fr;
		gap:36px 24px;
	}
	.et-footer__brand{
		grid-column:1 / -1;
	}
	.et-footer__col:nth-of-type(2){
		grid-column:1 / -1;
	}
}
@media (max-width: 560px){
	.et-footer__inner{
		grid-template-columns:1fr;
		padding:48px 20px 32px;
	}
	.et-footer__bottom{
		flex-direction:column;
		align-items:flex-start;
	}
}

/***Reset password espositore		*****/
form#resetPasswordForm {
	padding: 2rem;
}

/***Reveal sala fields (event creation)*****/
.expot-sala-fields {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height .6s ease, opacity .5s ease;
}

.expot-sala-fields.open {
	max-height: 600px;
	opacity: 1;
}

/* Availability result redesign */
.expot-availability-free ul {
	list-style: none;
	padding-left: 0;
	margin-top: 8px;
}

.expot-availability-free li {
	margin-bottom: 4px;
}

.expot-availability-notice p.expot-slot-label {
	font-weight: 600;
}

.expot-availability-notice p.expot-hint {
	margin-top: 10px;
	font-style: italic;
}

/* Cloudflare Turnstile */
.cf-turnstile {
	margin: 16px 0;
	min-height: 65px;
}

.expot-turnstile-error {
	display: none;
	color: #b00020;
	font-size: 0.9em;
	margin-top: 8px;
	padding: 8px 12px;
	background: #fdecea;
	border-radius: 4px;
}

.expot-turnstile-error.show {
	display: block;
}
