.idr-saludo {
	color: inherit;
	font-family:inherit;
}

.idr-pases {
	font-weight: 600;
	font-size: 1.5em;
}

.idr-formulario {
	margin: 0 auto;
	padding: 1.75rem;
	border-radius: 14px;
	box-sizing: border-box;
}

.idr-lista-nombres {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 1.25rem 0;
}

.idr-nombre-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	background: #1f1c17;
	border: 1px solid #2c2620;
	border-radius: 10px;
	color: #eee;
	cursor: pointer;
}

.idr-nombre-item input {
	width: 18px;
	height: 18px;
	accent-color: #d4af37;
	cursor: pointer;
}

.idr-btn-enviar {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 40px;
	background: #865656;
	color: #14120f;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: opacity .2s ease;
}

.idr-btn-enviar:hover { opacity: .9; }
.idr-btn-enviar:disabled { opacity: .6; cursor: not-allowed; }

.idr-mensaje-resultado {
	margin-top: 14px;
	padding: 10px 14px;
	border-radius: 8px;
	text-align: center;
	font-size: .9rem;
}

.idr-mensaje-resultado.idr-ok { background: #1f3d2b; color: #8ef0a8; }
.idr-mensaje-resultado.idr-error { background: #3d1f1f; color: #f08e8e; }

.idr-ya-respondido {
	background: #2b2a1c;
	color: #e0c96a;
	padding: 8px 12px;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: .85rem;
	text-align: center;
}

p.idr-error {
	color: #c0392b;
	text-align: center;
}

.idr-resumen-confirmacion {
	margin: 0 auto;
	padding: 1.75rem;
	background: #14120f;
	border: 1px solid #d4af37;
	border-radius: 14px;
	text-align: center;
	color: #eee;
	font-family: 'Segoe UI', sans-serif;
	box-sizing: border-box;
}

.idr-resumen-titulo {
	font-size: 1.2rem;
	font-weight: 700;
	color: #d4af37;
	margin: 0 0 .5rem;
}

.idr-resumen-subtitulo {
	color: #ccc;
	margin: 0 0 .75rem;
}

.idr-resumen-lista {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.idr-resumen-lista li {
	background: #1f1c17;
	border: 1px solid #2c2620;
	border-radius: 10px;
	padding: 10px 14px;
	color: #f1f1f1;
}
.idr-pases-wrap {
	text-align: center;

	color: #eee;
	line-height: 1.15;
}

.idr-pases-linea {
	display: block;
	font-size: 1rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #ccc;
}

.idr-pases-numero {
	display: block;
	font-size: 15em;
	font-weight: 700;
	color: #865656;
	margin: .05em 0;
}
.idr-buscador-id {
	max-width: 420px;
	margin: 0 auto;
	padding: 1.75rem;
	background: #14120f;
	border: 1px solid #d4af37;
	border-radius: 14px;
	text-align: center;
	box-sizing: border-box;
}

.idr-buscador-texto {
	color: #ccc;
	margin: 0 0 1rem;
}

.idr-buscador-error {
	color: #f08e8e;
	background: #3d1f1f;
	padding: 8px 12px;
	border-radius: 8px;
	margin: 0 0 1rem;
	font-size: .9rem;
}

.idr-buscador-form {
	display: flex;
	gap: 8px;
}

.idr-buscador-form input {
	flex: 1;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid #2c2620;
	background: #1f1c17;
	color: #eee;
	font-size: 1rem;
	box-sizing: border-box;
}

.idr-buscador-form button {
	padding: 10px 18px;
	border: none;
	border-radius: 10px;
	background: #d4af37;
	color: #14120f;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}