/**
 * Check-In Kiosk CSS - Simplified Force Styling
 *
 * @package Kingdom_Connect
 */

/* RESET - Force Full Screen Overlay */
#kc-kiosk-root {
	all: initial;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #f4f6f8;
	z-index: 999999; /* On top of everything */
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#kc-kiosk-root * {
	box-sizing: border-box;
}

/* The White Card */
#kc-kiosk-root .kiosk-card {
	background: white;
	width: 100%;
	max-width: 400px;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	text-align: center;
}

/* The Keypad Grid */
#kc-kiosk-root .kiosk-keypad-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-top: 25px;
}

/* Buttons */
#kc-kiosk-root .kiosk-key {
	background: #fff;
	border: 2px solid #eef0f2;
	border-radius: 50%;
	aspect-ratio: 1; /* Perfect circle */
	font-size: 1.5rem;
	color: #333;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

#kc-kiosk-root .kiosk-key:active {
	background: #007bff;
	color: white;
	border-color: #007bff;
}

/* Input */
#kc-kiosk-root input {
	font-size: 2rem;
	text-align: center;
	width: 100%;
	border: none;
	border-bottom: 2px solid #007bff;
	padding: 10px;
	background: transparent;
}
