#post-540 .entry-header {
	display: none;
}

.trainer-booking-thank-you {
	max-width: 800px;
	margin: 60px auto;
	padding: 40px 32px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	text-align: center;
	font-family: "Inter", "Poppins", sans-serif;
	color: #333;
}

.trainer-booking-thank-you h2 {
	color: #02528a;
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 700;
	margin-bottom: 10px;
}

.trainer-booking-thank-you p {
	color: #666;
	font-size: 1rem;
	margin-bottom: 16px;
}

.thank-you-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	border: 3px solid #02528a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #02528a;
	background-color: #f0f6ff;
	box-shadow: 0 4px 12px rgba(2, 82, 138, 0.15);
}

.thank-you-icon i {
	font-size: 36px;
	color: #02528a;
}

.trainer-booking-summary {
	margin-top: 24px;
	text-align: left;
}

.trainer-booking-summary h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: #1a3c6b;
	text-align: center;
	position: relative;
	display: inline-block;
	margin: 0 auto 24px;
	padding-bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
}

.trainer-booking-summary h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 3px;
	background-color: #02528a;
	border-radius: 2px;
}

.trainer-booking-summary__note {
	margin-top: 18px;
	font-size: 0.98rem;
	color: #000 !important;
	font-weight: 700 !important;
	text-align: start;
}

.trainer-booking-summary__list {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 15px 20px;
	background: #f8faff;
	padding: 20px 24px;
	border-radius: 12px;
	box-shadow: inset 0 0 0 1px rgba(33, 106, 220, 0.08);
}

.trainer-booking-summary__list dt {
	font-weight: 600;
	color: #1a3c6b;
}

.trainer-booking-summary__list dd {
	margin: 0;
	color: #444;
	font-weight: 600;
}

.trainer-booking-summary__value--message {
	white-space: pre-wrap;
}

.trainer-booking-summary__loading,
.trainer-booking-summary__empty {
	background: #f0f6ff;
	color: #555 !important;
	font-weight: 600;
	padding: 14px 20px;
	border-radius: 8px;
	text-align: center;
	box-shadow: inset 0 0 0 1px rgba(33, 106, 220, 0.2);
}

.button1 {
	padding: 12px 22px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 12px;
	background: linear-gradient(90deg, #02528a 0%, #0372b8 100%);
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	box-shadow: 0 4px 12px rgba(2, 82, 138, 0.2);
}

.button1:hover {
	background: linear-gradient(90deg, #014471 0%, #02629b 100%);
	color: #fff;
}

.mt-4 {
	margin-top: 1.2rem;
}

.me-2 {
	margin-right: 0.7rem;
}

.airworx-submission-summary {
	max-width: 800px;
	margin: 60px auto;
	padding: 40px 32px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	text-align: center;
	font-family: "Inter", "Poppins", sans-serif;
	color: #333;
}

.airworx-submission-summary h3 {
	color: #02528a;
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.airworx-submission-summary h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 170px;
	height: 3px;
	background-color: #02528a;
	border-radius: 2px;
}

.airworx-submission-summary p {
	color: #666;
	font-size: 1rem;
	margin-bottom: 16px;
}

@media (max-width: 576px) {
	.trainer-booking-summary__list {
		grid-template-columns: 1fr;
	}

	.trainer-booking-thank-you {
		padding: 28px 20px;
	}

	.trainer-booking-thank-you h2 {
		font-size: 1.6rem;
	}
}

.trainer-booking-summary__status--pending {
	background: rgba(245, 158, 11, 0.08);
	color: #b45309;
	border: 1px solid rgba(245, 158, 11, 0.4);
	padding: 4px 10px;
	border-radius: 50rem;
}