/**
 * Mobile Pass CSS
 *
 * @package Kingdom_Connect
 */

.kc-claim-ticket-container {
	min-height: 100vh;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kc-claim-ticket-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 400px;
	width: 100%;
	overflow: hidden;
}

.kc-claim-ticket-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 30px 20px;
	text-align: center;
}

.kc-claim-ticket-header h1 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.kc-claim-ticket-code {
	text-align: center;
	padding: 40px 20px;
	font-size: 72px;
	font-weight: bold;
	color: #1d2327;
	letter-spacing: 10px;
	font-family: 'Courier New', monospace;
}

.kc-claim-ticket-qr {
	text-align: center;
	padding: 20px;
	background: #f6f7f7;
}

.kc-claim-ticket-qr #kc-qr-code {
	display: inline-block;
}

.kc-claim-ticket-footer {
	padding: 30px 20px;
	background: #fff;
}

.kc-claim-ticket-footer h3 {
	margin: 0 0 15px 0;
	font-size: 16px;
	color: #1d2327;
	font-weight: 600;
}

.kc-children-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.kc-children-list li {
	padding: 12px 0;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.kc-children-list li:last-child {
	border-bottom: none;
}

.kc-allergies-badge {
	background: #d63638;
	color: #fff;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.kc-checkin-date {
	margin: 20px 0 0 0;
	padding-top: 20px;
	border-top: 1px solid #e5e5e5;
	font-size: 14px;
	color: #50575e;
	text-align: center;
}

.kc-claim-ticket-error {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	padding: 40px;
}

/* Kiosk Success QR Display */
.kc-qr-display {
	text-align: center;
	padding: 30px;
	background: #f6f7f7;
	margin: 20px 0;
	border-radius: 8px;
}

.kc-qr-label {
	font-size: 16px;
	font-weight: 600;
	color: #1d2327;
	margin-bottom: 20px;
}

.kc-qr-display #kc-success-qr-code {
	display: inline-block;
}

.kc-success-message {
	text-align: center;
	padding: 20px;
	font-size: 18px;
	color: #00a32a;
	font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
	.kc-claim-ticket-code {
		font-size: 48px;
		letter-spacing: 5px;
	}

	.kc-claim-ticket-header h1 {
		font-size: 18px;
	}
}
