.wsr-recepcion-app {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	border-radius: 16px;
	padding: 40px 30px;
	max-width: 500px;
	margin: 20px auto;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	box-shadow: 0 8px 40px rgba(0,0,0,0.3);
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wsr-rec-screen {
	display: none;
	width: 100%;
	text-align: center;
	animation: wsrRecFadeIn 0.4s ease-out;
}

.wsr-rec-screen.active {
	display: block;
}

@keyframes wsrRecFadeIn {
	from { opacity: 0; transform: translateY(15px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Pantalla de bienvenida */
.wsr-rec-logo {
	font-size: 64px;
	margin-bottom: 20px;
	animation: wsrRecFloat 3s ease-in-out infinite;
}

@keyframes wsrRecFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.wsr-rec-title {
	color: white;
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.wsr-rec-subtitle {
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	margin: 0 0 30px 0;
}

.wsr-rec-btn-start {
	background: linear-gradient(135deg, #00b4d8, #0077b6);
	color: white;
	border: none;
	padding: 18px 36px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 20px rgba(0,180,216,0.4);
}

.wsr-rec-btn-start:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 28px rgba(0,180,216,0.6);
}

.wsr-rec-btn-start:active {
	transform: translateY(0);
}

/* Pantalla de motivo */
.wsr-rec-question {
	color: white;
	font-size: 20px;
	margin: 0 0 25px 0;
}

.wsr-rec-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 25px;
}

.wsr-rec-option {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(255,255,255,0.08);
	border: 2px solid rgba(255,255,255,0.15);
	color: white;
	padding: 18px 24px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
	text-align: left;
}

.wsr-rec-option:hover {
	background: rgba(0,180,216,0.2);
	border-color: #00b4d8;
	transform: translateX(5px);
}

.wsr-rec-option.wsr-rec-option-autoridad {
	border-color: rgba(255,193,7,0.4);
}

.wsr-rec-option.wsr-rec-option-autoridad:hover {
	background: rgba(255,193,7,0.15);
	border-color: #ffc107;
}

.wsr-rec-option.wsr-rec-option-servicios {
	border-color: rgba(0,200,150,0.4);
}

.wsr-rec-option.wsr-rec-option-servicios:hover {
	background: rgba(0,200,150,0.15);
	border-color: #00c896;
}

.wsr-rec-btn-servicios {
	background: linear-gradient(135deg, #00c896, #00a67d) !important;
	box-shadow: 0 4px 16px rgba(0,200,150,0.3) !important;
}

.wsr-rec-btn-servicios:hover {
	box-shadow: 0 6px 24px rgba(0,200,150,0.5) !important;
}

.wsr-rec-option-icon {
	font-size: 28px;
}

/* Pantalla de datos */
#wsr-rec-form label {
	display: block;
	color: rgba(255,255,255,0.8);
	font-size: 13px;
	font-weight: 600;
	text-align: left;
	margin: 14px 0 6px 0;
}

#wsr-rec-form input[type="text"] {
	width: 100%;
	padding: 14px;
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	background: rgba(255,255,255,0.08);
	color: white;
	font-size: 16px;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

#wsr-rec-form input[type="text"]::placeholder {
	color: rgba(255,255,255,0.4);
}

#wsr-rec-form input[type="text"]:focus {
	outline: none;
	border-color: #00b4d8;
	background: rgba(255,255,255,0.12);
}

#wsr-rec-form-autoridad label {
	display: block;
	color: rgba(255,255,255,0.8);
	font-size: 13px;
	font-weight: 600;
	text-align: left;
	margin: 12px 0 6px 0;
}

#wsr-rec-form-autoridad input[type="text"],
#wsr-rec-form-autoridad select {
	width: 100%;
	padding: 12px;
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	background: rgba(255,255,255,0.08);
	color: white;
	font-size: 15px;
	box-sizing: border-box;
	transition: border-color 0.2s;
	-webkit-appearance: none;
}

#wsr-rec-form-autoridad input[type="text"]::placeholder {
	color: rgba(255,255,255,0.4);
}

#wsr-rec-form-autoridad input[type="text"]:focus,
#wsr-rec-form-autoridad select:focus {
	outline: none;
	border-color: #ffc107;
	background: rgba(255,255,255,0.12);
}

#wsr-rec-form-autoridad select option {
	background: #1a1a2e;
	color: white;
}

#wsr-rec-form-servicios label {
	display: block;
	color: rgba(255,255,255,0.8);
	font-size: 13px;
	font-weight: 600;
	text-align: left;
	margin: 12px 0 6px 0;
}

#wsr-rec-form-servicios input[type="text"],
#wsr-rec-form-servicios select {
	width: 100%;
	padding: 12px;
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	background: rgba(255,255,255,0.08);
	color: white;
	font-size: 15px;
	box-sizing: border-box;
	transition: border-color 0.2s;
	-webkit-appearance: none;
}

#wsr-rec-form-servicios input[type="text"]::placeholder {
	color: rgba(255,255,255,0.4);
}

#wsr-rec-form-servicios input[type="text"]:focus,
#wsr-rec-form-servicios select:focus {
	outline: none;
	border-color: #00c896;
	background: rgba(255,255,255,0.12);
}

#wsr-rec-form-servicios select option {
	background: #1a1a2e;
	color: white;
}

.wsr-rec-btn-autoridad {
	background: linear-gradient(135deg, #ffc107, #e0a800) !important;
	color: #1a1a2e !important;
	box-shadow: 0 4px 16px rgba(255,193,7,0.3) !important;
}

.wsr-rec-btn-autoridad:hover {
	box-shadow: 0 6px 24px rgba(255,193,7,0.5) !important;
}

.wsr-rec-btn-submit {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, #28a745, #1e7e34);
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 20px;
	transition: all 0.2s;
	box-shadow: 0 4px 16px rgba(40,167,69,0.3);
}

.wsr-rec-btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(40,167,69,0.5);
}

/* Cámara y foto */
.wsr-rec-foto-container {
	margin: 10px 0;
	text-align: center;
}

.wsr-rec-video,
.wsr-rec-preview {
	width: 100%;
	max-width: 280px;
	border-radius: 10px;
	border: 2px solid rgba(255,255,255,0.2);
	margin-bottom: 10px;
}

.wsr-rec-foto-btns {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.wsr-rec-btn-foto {
	padding: 10px 16px;
	border: 1px solid rgba(255,255,255,0.3);
	background: rgba(255,255,255,0.08);
	color: white;
	border-radius: 8px;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s;
}

.wsr-rec-btn-foto:hover {
	background: rgba(255,255,255,0.15);
	border-color: #00b4d8;
}

.wsr-rec-btn-capturar {
	background: rgba(0,180,216,0.2) !important;
	border-color: #00b4d8 !important;
}

.wsr-rec-btn-repetir {
	background: rgba(255,193,7,0.15) !important;
	border-color: #ffc107 !important;
}

/* Botón volver */
.wsr-rec-btn-back {
	background: none;
	border: 1px solid rgba(255,255,255,0.3);
	color: rgba(255,255,255,0.7);
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 13px;
	cursor: pointer;
	margin-top: 15px;
	transition: all 0.2s;
}

.wsr-rec-btn-back:hover {
	border-color: white;
	color: white;
}

/* Pantalla de confirmación */
.wsr-rec-success {
	background: rgba(40,167,69,0.15);
	border: 2px solid rgba(40,167,69,0.4);
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 20px;
}

.wsr-rec-check {
	font-size: 48px;
	display: block;
	margin-bottom: 15px;
}

.wsr-rec-success h3 {
	color: #4ceb7a;
	font-size: 22px;
	margin: 0 0 10px 0;
}

.wsr-rec-success p {
	color: rgba(255,255,255,0.7);
	font-size: 14px;
	margin: 0;
}

.wsr-rec-success.wsr-rec-authorized {
	background: rgba(40,167,69,0.25);
	border-color: rgba(40,167,69,0.6);
}

.wsr-rec-success.wsr-rec-denied {
	background: rgba(220,53,69,0.2);
	border-color: rgba(220,53,69,0.5);
}

.wsr-rec-success.wsr-rec-denied h3 {
	color: #ff6b7a;
}
