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

/* ==========================================================================
   CSS Variables & Base
   ========================================================================== */

:root {
	--expot-blue: #003466;
	--expot-blue-light: #0055A5;
	--expot-red: #c00e0d;
	--expot-yellow: #f7c945;
	--espot-light-yellow:#fedf88;
	--expot-text: #1A1A1A;
	--expot-text-secondary: #666666;
	--expot-border: #E5E7EB;
	--expot-bg: #FFFFFF;
	--expot-card-bg: #FFFFFF;
	--expot-success: #22C55E;
	--expot-error: #EF4444;
	--expot-radius: 12px;
	--expot-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
	--expot-shadow-hover: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

body {
	font-family: 'Roboto', sans-serif;
	color: var(--expot-text);
	background-color: var(--expot-bg);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	color: var(--expot-blue);
}

/* ==========================================================================
   Design System / Components
   ========================================================================== */

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

.expot-section-subtitle {
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	color: var(--expot-text-secondary);
	margin-bottom: 1.5rem;
}

.expot-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);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

.expot-card-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--expot-blue);
	margin: 0;
}

.expot-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.25rem;
	font-family: 'Poppins', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	border: 2px solid var(--expot-blue);
	background: transparent;
	color: var(--expot-blue);
}

.expot-btn:hover {
	background: var(--expot-blue);
	color: #FFFFFF;
}

.expot-btn-primary {
	background: var(--expot-blue);
	color: #FFFFFF;
	border-color: var(--expot-blue);
}

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

.expot-btn-small {
	padding: 0.4rem 0.75rem;
	font-size: 0.8rem;
}

.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-biglietti{
	margin:50px auto;
}

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

.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 {
	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;
}

.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;
}

/* Hide Eventin default purchase / attendee forms */
.etn-ticket-wrapper,
.etn-purchase-form,
.etn-attendee-form,
.etn-add-to-cart-form,
.etn-event-ticket {
	display: none !important;
}

@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;
	}
}

/* Ticket question before Eventin widget */
.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;
}

/* Hide Eventin ticket widget until question is answered */
body.expot-ticket-question-active .etn-single-event-ticket-wrap {
	display: none !important;
}

body.expot-ticket-question-active.expot-ticket-answered .etn-single-event-ticket-wrap {
	display: block;
}

/* 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 0;
}

.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(4, 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: repeat(2, 1fr);
	gap: 1.5rem;
}

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

.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: wrap;
}

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

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

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

.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-quick-actions {
		grid-column: span 1;
	}

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

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

	.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;
	}
}

/* ==========================================================================
   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 {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.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;
}

.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;
	}
}

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

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

.etn-single-event-wrap {
	font-family: 'Roboto', sans-serif;
}

.etn-single-event-wrap h2,
.etn-single-event-wrap h3,
.etn-single-event-wrap h4 {
	font-family: 'Poppins', sans-serif;
	color: var(--expot-blue);
}

/* ==========================================================================
   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-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-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,
.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);
}

/* 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: 3rem 0;
}

.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-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;
}
